Questions tagged [springdoc-openapi-ui]
365 questions
0
votes
2 answers
How to add I18N support for Swagger in Spring Boot
I am working with springdoc-openapi-ui swagger. I don't want to hard code the values for swagger documentation. I want to read such values from the properties file.
When I tried that I am getting compilation error The value for annotation attribute…

SSK
- 3,444
- 6
- 32
- 59
0
votes
1 answer
How to expose Spring's HttpSecurity Logout endpoint in swagger-ui if using springdoc-openapi library?
I have found solution for exposing Spring logout endpoint in swagger-ui for springfox:
Configure Swagger-UI to pick up Spring's HttpSecurity Logout endpoint
but honestly don't know how to make it for springdoc-openapi:https://springdoc.org/

akudama
- 121
- 1
- 1
- 5
0
votes
1 answer
Spring security call for all the services when loading swagger UI
I am using the springdoc-openapi-ui. When I load my swagger page, spring-security is called for all the API at the time of loading swagger UI. I have spring security in place. My expectation is security should be called when I try to hit the…

SSK
- 3,444
- 6
- 32
- 59
0
votes
1 answer
How to describe Schema of my object by Open Api 3.0 with @annotation?
Is it ok to use annotation for this? I don't understand how to use Yaml.
Example:
@Operation(summary = "Get page of top by rating articles by title")
@ApiResponses(value = {
@ApiResponse(responseCode = "200 successful operation",
…

Mikhail
- 1
- 2
-1
votes
1 answer
How to make QueryDSL Springdoc predicates work in Springboot 3 as it did in Springboot 2?
I utilized Springdocs 1 in Springboot 2 to generate my Swagger documentation. In addition, I employed the springdoc-openapi-data-rest library to generate the additional parameters necessary for @QuerydslPredicate instead of using the predicate…

rjdkolb
- 10,377
- 11
- 69
- 89