Spring Boot 使用 Swagger UI
Posted 阮胜的个人博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot 使用 Swagger UI相关的知识,希望对你有一定的参考价值。
引入pom依赖:
<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.9.2</version> </dependency>
到GitHub https://github.com/swagger-api/swagger-ui 下载项目,dist目录拷贝出来直接放到资源路径.
index.html 即为api页面
然后在Spring Boot 启动类加上注解 @EnableSwagger2
@SpringBootApplication @EnableSwagger2 public class NeteaseApplication { public static void main(String[] args) { SpringApplication.run(NeteaseApplication.class, args); } }
Api 地址:http://localhost:8080/api/index (地址由存放的资源路径文件夹决定)
Api-json:http://localhost:8080/v2/api-docs
Swagger2 常用注解: https://blog.csdn.net/u014231523/article/details/76522486
以上是关于Spring Boot 使用 Swagger UI的主要内容,如果未能解决你的问题,请参考以下文章
在spring Boot中使用swagger-bootstrap-ui(原文)
Spring Boot + Swagger + Swagger UI 和 @RequestBody 具有数据类型 String
spring boot swagger ui使用 nginx 部署后无法使用问题