python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k 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
How to test Reactor WebClient body response from a reactive endpoint that returns Mono<ResponseEntity<Flux<MyDto>>>?
I used open openapi-generator-maven-plugin from org.openapitools in my Spring Boot project with the reactive configuration enabled. One of my endpoint returns a List body response that is auto-generat...
David Arevalo
Votes: 0
Answers: 1
Is there a maven plugin that I can use to generate openapi spec file from JAX-RX source files
I'm trying to generate openapi/swagger spec file during the build time. Maven plugin jaxrs-gen works but it's very old and no longer maintained and creates very old version of swagger spec file which ...
mr-m-jali
Votes: 0
Answers: 1
Unable to inherit in OpenAPI 3 using allOf in java
Please find the schemas in my contract yaml file :
Foo:
allOf:
- $ref: "#/components/schemas/Bar"
properties:
ancestors:
items:
$ref: "#/components/schemas/Bar...

arunken
Votes: 0
Answers: 1