一、建一个SpringBoot项目
二、导入依赖
在pom.xml
文件中添加Swagger依赖库,这里我们使用的是Swagger2版本,在UI方面,比Swagger1版本要好看很多。
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.0</version>
</dependency>
三、创建Swagger配置类
package com.example.swagger2.config;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
//Swagger 配置类
@Configuration
@EnableSwagger2
public class SwaggerConfig {
}
四、启动项目
输入:http://localhost:8080/swagger-ui.html
五、总结
这样子就算已经把Swagger环境搭建好了,下一章我会出Swagger的具体使用,感兴趣可以持续跟进一下