springdoc-openapi
                                
                                 springdoc-openapi copied to clipboard
                                
                                    springdoc-openapi copied to clipboard
                            
                            
                            
                        Library for OpenAPI 3 with spring-boot
**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...
 因为我的访问我的服务是经过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资源是对的  这个是个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 
**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: ...