2020年12月2日 | Leave a comment 问题: 之前都需要手工配置 @EnableSwagger 之类 springfox 3.0 有个 starter 简化了一些 解决: pom.xml 加入 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> 12345 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version></dependency> 访问: http://localhost:8080/swagger-ui/ 完整代码参考: https://gitee.com/giant35/springfox-demo1 参考: https://github.com/springfox/springfox