1.创建spring boot项目
2.导入jar



io.springfox
springfox-swagger-ui
2.9.2



io.springfox
springfox-swagger2
2.9.2

3.编写一个Hello 工程
4.配置swagger ==>Config

@Configurationbr/>@EnableSwagger2//开启swagger2
public class SwaggerConfig {
}

5.测试运行:

http://127.0.0.1:8080/swagger-ui.html

Swagger_第1张图片

配置swagger

swagger 的benan实例docket;

Swagger_第2张图片

项目地址