python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Spring Boot OpenAPI 3 with Spring Data REST
I'm failing at documenting my Spring Data REST API with OpenAPI. Nothing show in swagger-ui's homepage (and /v3/api-docs obviously).
Here is an excerpt from my dependencies:
<dependency>
...

Thomas Escolan
Votes: 0
Answers: 1
How to hide /profile Endpoint in Spring Boot
First time I'm writing a Webservice and really I was able to hide my repositories with @RestResource(exported = false) but when I start my Service Application with the root uri like: http://localhost...
FMLost
Votes: 0
Answers: 1
Springdoc Data REST ignore overwrite Pageable parameters name
In my application.properties, I have overwritten the name of the Pageable parameters:
spring.data.web.pageable.page-parameter=offset
spring.data.web.pageable.size-parameter=limit
But when I go to the...
Oromis
Votes: 0
Answers: 1
No 'Access-Control-Allow-Origin' header is present on the requested resource. I get when try to get data from Spring Data REST
I'm trying to fetch some data from the REST API.The backend is written in Java using Spring Data REST I have a repository and an entity created
public interface DisciplineRepository extends JpaReposit...
Daniel Dzhkashev
Votes: 0
Answers: 1