springdoc-openapi
springdoc-openapi copied to clipboard
Library for OpenAPI 3 with spring-boot
Links at the bottom of file aren't formatted properly to display in markdown
- When try to open swagger page its return 503 , İts works successfully about 2 hours and then its start to response 503 ( Failed to load api definition)...
This is closely related to #2104, which states that extensions in the OpenAPI object no longer work. This was fixed for extensions at the top level, but extension in sub-parts...
Spring 6 provides classes to be compliant with the RFC 7808 Problem Details for HTTP APIs. The class `org.springframework.http.ProblemDetail` is now available (cf. https://docs.spring.io/spring-framework/reference/web/webmvc/mvc-ann-rest-exceptions.html). But when this class is analysed...
**Is your feature request related to a problem? Please describe.** - I want to apply `@JsonView` to only ResponseBody and not to RequestBody to achieve this I am annotating `@JsonView`...
**SpringDocApp193Test.java** fails with **JDK 21** Version: ``` springdoc-openapi 2.3.0 ``` `mvn clean package ` fails with: ``` java.lang.AssertionError: components.schemas.Books.allOf[1].properties Unexpected: first ; components.schemas.Books.allOf[1].properties Unexpected: last ; components.schemas Unexpected: Book ```...
From Spring 6.1.0 (Spring Boot 3.2.0), `@HttpExchange` has supported for server side handling, see https://github.com/spring-projects/spring-framework/issues/30913. `springdoc` should support processing `@HttpExchange` based annotations (eg. `@GetExchange`, `@PostExchange`).
**Is your feature request related to a problem? Please describe.** When using springdoc-openapi I have found that sometimes it is necessary to define common headers for all endpoints. I am...
**Is your feature request related to a problem? Please describe.** I'm consistently challenged when documenting Java APIs using OpenAPI Description (YAML or JSON) due to the absence of native support...
**Describe the bug** I placed a variable of Class type in the entity class, and used @ParameterObject annotation for the parameters in the controller. At this point, an infinite loop...