一、Swagger——API文档工具
1、Swagger官网地址:https://swagger.io/
Swagger是一款RestFul风格的API文档在线生成工具,用于API文档的定义与同步更新,可以直接运行,直接在线测试API接口,而且支持多种语言。
2、在项目中使用Swagger需要导入jar包:springfox-swagger2和springfox-swagger-ui
Maven中央仓库查询地址:https://mvnrepository.com/
二、Spring Boot集成Swagger
1、新建一个SpringBoot的web项目,并导入相关依赖(选择合适的版本)
<!--springfox-swagger-ui的jar包-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
<!--springfox-swagger2的jar包-->
<dependency