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

**Describe the bug** When trying to generate Schema description from JavaDoc comments, it's not working as expected for fields that not match exactly with their JSON representation (camelCase to snake_case...

**Describe the bug** - When using springdoc-openapi v2.3.0, a message starting with "XXX PROPS " is displayed to standard error. **To Reproduce** Steps to reproduce the behavior: - Use springdoc-openapi...

When I add validation annotations to a parameter, the documentation page shows a 500 error. However, when I remove the validation annotations, everything works fine. with validation: ``` @GetMapping("/test/{id}") public...

![123](https://github.com/springdoc/springdoc-openapi/assets/52535757/8b9f47c4-6691-4630-9148-2547625179dc) 因为我的访问我的服务是经过nginx代理的, 就是我的域名https://**.**.com.cn/analysisapi 经过nginx代理后 https://**.**.com.cn/, 去掉了analysisapi ,但是访问v3/api-docs/swagger-config 404, 有办法可以修改域名部分吗,我期待的是https://**.**.com.cn/analysisapi,而不是 https://**.**.com.cn/analysisapi, 比如访问这个静态js资源是对的 ![456](https://github.com/springdoc/springdoc-openapi/assets/52535757/db92a299-f276-4b4a-9556-5e8c5020439a) 这个是个bug呢,还是有办法可以配置,谢谢大佬指教一下

Back in the days of SpringFox, there were several requests to be able to change and/or disable the unique suffixes appended to the operationIds. While there were a few workarounds,...

repo is: https://github.com/rookie-luochao/openapi-ui ![12](https://github.com/springdoc/springdoc-openapi/assets/22948077/d54837ce-f17a-4709-ae0d-0f46d7d1031e)

**Describe the bug** one content type (a/a) is ignored **To Reproduce** Steps to reproduce the behavior: - What is the actual and the expected result using OpenAPI Description (yml or...

I want to convert Option to a nullable A. as https://github.com/springdoc/springdoc-openapi/issues/712#issuecomment-639062595 suggest ```java @Override public Schema resolve(AnnotatedType annotatedType, ModelConverterContext context, Iterator chain) { JavaType javaType = Json.mapper().constructType(annotatedType.getType()); if (javaType !=...

I have a @PostMapping endpoint in my controller layer but it's not shown on Swagger UI. I use latest version (version 2.3.0) My Spring Boot version is 3.2.1 Screenshots: ![image](https://github.com/springdoc/springdoc-openapi/assets/83655146/0caf7940-af96-4281-b723-737e115a3ba7)...