本文主要是介绍SpringBoot 两分钟搞定swagger,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一.添加依赖
<dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger2</artifactId><version>2.7.0</version>
</dependency>
<dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger-ui</artifactId><version>2.7.0</version>
</dependency>
二. Application启动类 增加 @EnableSwagger2注解
三.localhost:port/swagger-ui.html 查看效果
参考:https://blog.csdn.net/riju4713/article/details/85058480
这篇关于SpringBoot 两分钟搞定swagger的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!