I would like to create a standalone swagger-ui application to view different APIs from different servers in one central place. In the second step, I would like to configure swagger-ui to display multiple APIs at the same time. I do not want to add swagger-ui to all servers that provide api-dag for swagger.
For this, I would like to use spring boot and thought it should be a simple task. However, it's hard for me to get it to work.
Here is what I did:
- Spring boot application generated using https://start.spring.io
- included
spring-boot-starter-web - add dependency
io.springfox:springfox-swagger-ui:2.3.1
When opening http: // localhost: 8080 / swagger-ui.html I see a 404 error and the user interface seems to be broken:

source
share