Added Springfox Swagger-UI and it's not working, what am I missing?
I tried most of these answers and the final solution was creeping..
The right URL is the following
http://localhost:8080/swagger-ui/
I'm using Springfox swagger-ui 3.x.x
Refer for complete swagger setup: http://muralitechblog.com/swagger-rest-api-dcoumentation-for-spring-boot/
I ran into this issue because I had endpoints with request mappings that had path variables of this form: /{var}. Turns out that this is an issue for both GET and POST endpoints i.e. GET /{var} and POST /{var} block swagger-ui. Once I made the paths more specific, I got swagger-ui to work.
Quote from https://github.com/springfox/springfox/issues/1672
When spring finds a simple path with just one variable swagger cannot intercept the URLs.
Found by investigating various ideas in comments.
Already a lot of answers have stated the right but still, there has been some confusion regarding the error.
If you are using Spring Boot Version >= 2.2, it is recommended using SpringFox Swagger version 3.0.0
Now, with only a single dependency is required to be added in the pom.xml.
<!-- Swagger dependency -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
Once the application is started, you can get the documentation by hitting either of the new swagger URLs.
Option 1: http://localhost:8080/swagger-ui/
Option 2: http://localhost:8080/swagger-ui/index.html