springdoc-openapi icon indicating copy to clipboard operation
springdoc-openapi copied to clipboard

Library for OpenAPI 3 with spring-boot

Results 172 springdoc-openapi issues
Sort by recently updated
recently updated
newest added

- When creating response dto with inner class, schema is not created properly if it is duplicated. In this case, you must write your name directly into @Schema annotation. -...

A NPE exception occurs when a property does not have a getter method

``` @Schema public class RequestDTO { ...... @Schema private T body; } ``` In a spring-boot and mvc application , use RequestDTO be a REST requestbody,like ``` @PostMapping("/test") @Operation(summary =...

**Describe the bug** The pom contains the `` https://springdoc.github.io/springdoc-openapi which seems to be a dead link. I get a 404 when trying to visit it. Visiting "https://springdoc.github.io" works, so I...

I have migrated from Springfox to Open API and my old Springfox config has some alternate type rules like the below: ``` new AlternateTypeRule(typeResolver.resolve(ResponseEntity.class, typeResolver.resolve(ResponseVO.class, WildcardType.class)), typeResolver.resolve(WildcardType.class))) ``` Similar way,...

Initially my project was using spring fox. To generate api description @ApiOperation was used. Now we are migrating to springdoc-openapi-ui. To generate api description @Operation is used. But since its...

I want to add field level description in request body for post apis. I am not able to use @Schema at field level. On researching I found out that @Schema...

If a class annotated with `@ParameterObject `has Complex objects (example "Locale" ) and we annotate the Locale field with `@Hidden`, it doesn't hide sub fields of the class. I can...

Why? For a long time the Swagger Core library for Jakarta has been **without sources and without javadoc in Maven Central**. This has been very annoying when developing as you...

**Is your feature request related to a problem? Please describe.** - I am able to configure the swagger-ui using spring boot properties. as per swagger-ui documentation but i can't figure...