405 questions
0
votes
0
answers
23
views
How to Upgrade openapi-generator-maven-plugin from 5.4.0. to 7.9.0
I'm currently using the openapi-generator-maven-plugin version 5.4.0, and I've customized it with my own POJOs, models, and a custom CustomOpenApiGenerator class. However, the generated classes still ...
0
votes
0
answers
10
views
Springdoc Mobile Compatibility
I have started using springdoc in java.
Everything works as expected but if i load the the webpage on mobile it is not compatible. The proportions do not look correct. I have investigated the ...
0
votes
0
answers
137
views
Springdoc Swagger UI 404 Issue with Version 2.5.0 and 2.8.6
I’m facing an issue with Springdoc in my Spring Boot app and could use some help. Here’s the situation:
When I use Springdoc version 2.5.0, everything works fine until I add a @ControllerAdvice to my ...
0
votes
0
answers
46
views
Spring Boot Maven Plugin does not pickup test properties or ansible properties for integration tests
I am trying to run openapi springdoc for my application for which I am using
<groupId>org.springdoc</groupId>`
<artifactId>springdoc-openapi-maven-plugin</artifactId>`
<...
0
votes
1
answer
51
views
Set up OpenAPI (Swagger) UI 3 in Spring Framework 6
Tried a few suggestions in existing stackoverflow discussions but I can't even get the html page to serve, and almost all information on the web uses Spring Boot instead, does anyone have an article, ...
0
votes
0
answers
52
views
I am using SpringDoc, version <= 2.6.0 with Spring Boot 3.x and getting following error while accessing http://localhost:8080/v3/api-docs
I am using SpringDoc, version <= 2.6.0 with Spring Boot 3.x and getting following error while accessing http://localhost:8080/v3/api-docs
There was an unexpected error (type=Internal Server Error, ...
0
votes
1
answer
47
views
Spring Boot: Combine multiple applications SwaggerUI?
Having about 6 Spring Boot applications with REST APIs running with Actuator and Prometheus support.
These are running on Docker, but the actuator port is not exposed.
Although we can connect each ...
0
votes
1
answer
291
views
SpringDoc 2.8.0: Failed to introspect Class [SwaggerConfig] - IllegalStateException
After updating SpringDoc to version 2.8.0, my Spring Boot application fails to start with the following error:
Caused by: java.lang.IllegalStateException: Failed to introspect Class [org.springdoc....
0
votes
0
answers
18
views
Point Springdoc Swagger-UI to customized YML
Having moved to springdoc openapi, the generated UI was very much different and not as comfortable. I'm currently working with a base.yml that creates several tags without their operations. Base.yml ...
0
votes
1
answer
2k
views
Why swagger is not working properly with the springdoc-openapi-ui dependency in my spring boot application with the version 3.4.1?
I'm working on a Spring Boot application and trying to integrate Swagger UI using the springdoc-openapi-ui dependency. Here's my setup:
Spring Boot version: 2.x.x / 3.x.x (3.4.1)
springdoc-openapi-ui ...
0
votes
0
answers
34
views
Swagger UI for each endpoint in OpenAPI description
Can anyone help me with the issue, here i want to implement the code where i need to see swagger-ui for each rest endpoint, separately.
Here is the code which I have implemented, if anyone has a ...
2
votes
0
answers
33
views
How to display in swagger dynamically registered routes in a java webflux applicaiton?
I am creating a demo applicaiton where I register my endpoints dynamically using an endpoint registrar based on controller beans I have instanciated. Thus there are no annotations for the spring-doc ...
0
votes
1
answer
312
views
OpenApi maven-plugin-generator attributes error
I'm using SpringBoot 3.4.1, Java 21 and I'm trying to generate Spring server classes (Api plus Model).
I have this maven config on the generator project module:
<dependency>
<groupId>...
1
vote
1
answer
150
views
Unable to disable POST methods in Springdoc swagger UI
I am using springdoc UI to generate the documentation of my Java API and want to disable the try it out button (which should actually be the default behavior according to the docs)
I have tried both:
...
0
votes
0
answers
33
views
Recursively defined collection fields are omitted in superclass generated api doc
Recursively defined collection fields are omitted in superclass generated api doc.
i think similar to this issue 'https://github.com/springdoc/springdoc-openapi/issues/1158'.
Here is my code.
@Data
...