Table of Contents
Configuration Information Update
Error Details
Error Causes
Version mismatch between SpringBoot3 and Swagger3
Solution Methods
Use springdoc instead of springfox, specific steps as follows:
Introduce Dependencies
Add the following dependencies in the pom.xml file:
12345678910 <dependency><groupId>org.springdoc</groupId><artifactId>springdoc–openapi–starter–webmvc–ui</artifactId><version>2.0.2</version></dependency><dependency><groupId>org.springdoc</groupId><artifactId>springdoc–openapi–starter–webmvc–api</artifactId><version>2.0.2</version></dependency>
Modify Configuration Information
Add the following content in application.yml:
12 springdoc:swagger–ui.path: /swagger–ui.html
Create a File
Create a SwaggerConfig.java file and add the following content:
1 2 |
springdoc: swagger–ui.path: /swagger–ui.html |
Access
Start the project and access 127.0.0.1:20000/swagger-ui/index.html
If you see the following interface, it means you have been successful!!!
Leave a Reply
You must be logged in to post a comment.