Closed danielbradea closed 5 months ago
Hello @danielbradea. How did you resolve this issue ? For the me the ui loads, but without any documentation generated for my controllers .
I have the same issue. OpenDocs loads, http://localhost:8080/v3/api-docs, but not http://localhost:8080/swagger-ui.html - it keeps saying 404 not found
Hi, I got it to work with the following pom.xml:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.10</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
No extra configurations or class annotations. I didn't even add the @EnableSwagger... something to the @springbootapplication class. I don't know where the bug is but this seemed to work. If you have any other questions about another part of my setup, I'd be happy to answer.
LIGHT UNTO THEE LIFE UNTO THEE SUN MAY THOUGH BE TO THE CYCLE ABOVE
Summary: I've encountered an issue where Swagger UI is not accessible in my Spring WebFlux application despite configuring it with springdoc-openapi-starter-webflux-api.
Steps to Reproduce:
Expected Behavior: I expect Swagger UI to be accessible, allowing me to interact with the API documentation.
Actual Behavior: When trying to access http://localhost:8080/swagger-ui.html, I receive a 404 error indicating that the resource cannot be found.
Additional Information:
Environment: