本文主要是介绍【SpringBoot深入浅出系列】SpringBoot定义swagger2的UI界面,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
- 一、访问http://localhost:8080/swagger-ui.html
- 二、访问http://localhost:8080/doc.html
- 三、访问http://localhost:8080/docs.html
- 四、访问http://localhost:8080/document.html
SpringBoot 定义 swagger2 的 UI 界面通过在 pom.xml 中配置依赖实现,以本地 localhost:8080 访问为例。
一、访问http://localhost:8080/swagger-ui.html
<dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger-ui</artifactId><version>2.10.5</version>
</dependency>
二、访问http://localhost:8080/doc.html
<dependency><groupId>com.github.xiaoymin</groupId><artifactId>swagger-bootstrap-ui</artifactId><version>1.9.3</version>
</dependency>
三、访问http://localhost:8080/docs.html
<dependency><groupId>com.github.caspar-chen</groupId><artifactId>swagger-ui-layer</artifactId><version>1.1.3</version>
</dependency>
四、访问http://localhost:8080/document.html
<dependency><groupId>com.zyplayer</groupId><artifactId>swagger-mg-ui</artifactId><version>2.0.1</version>
</dependency>
这篇关于【SpringBoot深入浅出系列】SpringBoot定义swagger2的UI界面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!