python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
OpenAPI, contract-first with Springdoc and multiple specs
I am trying to port a Swagger UI from Springfox to Springdoc.
The Swagger UI is generated via Maven plugin
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plu...
Christophe Andrey
Votes: 0
Answers: 0
Springdoc Swagger UI not using swagger-config
need some help with springdoc-openapi-ui!
I am using springdoc-openapi-ui to render my API schema. This is the version details of it.
Now, i have done some configuration in my spring boot application...
Arpit Agrawal
Votes: 0
Answers: 4
How to generate oneOf using springdoc from a Kotlin sealed class
I have an existing Kotlin model which is a sealed class
sealed class AnyShape(val type: ShapeType) {
enum class ShapeType { Square, Circle }
data class Square(val size: Float) : AnyShape...
Jan
Votes: 0
Answers: 0
Reading static resources in Springboot for custom swagger-ui
`I'm using springdoc-openapi. I want to customize the swagger, so I copied the whole thing to my resources directory
I am also not loading the files from the jar
<dependency>
...
Peter Kronenberg
Votes: 0
Answers: 0