I am trying to integrate Spring Boot 2.0 with swagger but not showing up end points.When I looked to developer console on network tab ,it says that I couldn't find "http://localhost:8080/swagger-resources/configuration/ui" and return 404.
相关问题
- How to refer to an external JSON file containing r
- Dependency injection into Logback Appenders with S
- How do I hide routes I don't control from Serv
- Deserialize duplicate keys to list using Jackson
- How can I access the repository from the entity in
相关文章
- swagger3.0,版本的接口都没有了
- How to load @Configuration classes from separate J
- Using Spring Dynamic Languages Support from Groovy
- Spring JMS : Set ErrorHandler for @JmsListener ann
- ModelMapper: Choose mapping based on Child class
- Remove a route with IOperationFilter in SwashBuckl
- Configure Spring for CORS
- Remove transitive classpath dependency in gradle
If you have @EnableWebMvc or @WebMvcConfigurationSupport annotation anywhere in the project then remove these or add custom resource handlers to configure swagger-ui.
Here's some common solutions: https://github.com/springfox/springfox/issues/2396#issuecomment-402150402