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

Library for OpenAPI 3 with spring-boot

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

I am having a parent class with subclasses. I am using the parent class for `@RestController` methods' `@RequestBody` parameters and for return values. And I am using different `@JsonView` annotations...

duplicate

**Is your feature request related to a problem? Please describe.** When using springdoc-openapi-ui, one gets a dependency to the old javax-apis through the version of swagger-core that is included (via...

enhancement

**Describe the bug** As far as I know, springdoc configures the endpoint prefix via `server.servlet.context-path`. In my application, my endpoint prefix is not configured by servlet, which means I don't...

**Describe the bug** I tried different possibilities to provide multiple example values programatically... e.g. Response Example Value But nothing worked out. Using OpenAPI Specification (yml or json file) it's working!...

## Describe the bug When the argument of the MethodParameterPojoExtractor.extractFrom method is a record class, duplicate fields gets. 1. when the argument is a class (expected) ```java // The ClassObject...

**Describe the bug** Swagger UI has alignment issues between the **Name** column and **Description** column. Attached is a screenshot, where you can see the marked arrows where the description should...

**Problem** I would like to use _deprecated_ to move a property from let's say a property `status` from class/schema `A` to class/schema `B`. Sadly, declaring the property `A.status` as deprecated...

**Describe the bug** When grouping using the `springdoc.group-configs[0].group` and `springdoc.group-configs[0].packages-to-scan` properties, accented characters are translated to `ó` (see image below). **To Reproduce** - Spring version: Spring boot 2.6.3 (Extrated from...

I have hello world rest api service based on spring boot 2.7.3 powered JDK 17: ``` @RestController public class ApiServerController { @PostMapping(value="/invoke") public InvokeResponse invoke(@RequestBody InvokeRequest request, MessageContext messageContext) {...

**Describe the bug** I created two tests controllers, each one having an ExceptionHandler for ResponseStatus 500. Calling them I've 2 different response depending on the controller called. So each @ExceptionHandler...