|
|
@ -33,9 +33,13 @@ public class SwaggerConfig |
|
|
|
@Autowired |
|
|
|
@Autowired |
|
|
|
private RuoYiConfig ruoyiConfig; |
|
|
|
private RuoYiConfig ruoyiConfig; |
|
|
|
|
|
|
|
|
|
|
|
/** Swagger开关配置 */ |
|
|
|
/** 是否开启swagger */ |
|
|
|
@Value("${swagger.enable}") |
|
|
|
@Value("${swagger.enabled}") |
|
|
|
private boolean swaggerEnable; |
|
|
|
private boolean enabled; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 设置请求的统一前缀 */ |
|
|
|
|
|
|
|
@Value("${swagger.pathMapping}") |
|
|
|
|
|
|
|
private String pathMapping; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 创建API |
|
|
|
* 创建API |
|
|
@ -45,8 +49,7 @@ public class SwaggerConfig |
|
|
|
{ |
|
|
|
{ |
|
|
|
return new Docket(DocumentationType.SWAGGER_2) |
|
|
|
return new Docket(DocumentationType.SWAGGER_2) |
|
|
|
// 是否启用Swagger
|
|
|
|
// 是否启用Swagger
|
|
|
|
.enable(swaggerEnable) |
|
|
|
.enable(enabled) |
|
|
|
.pathMapping("/dev-api") |
|
|
|
|
|
|
|
// 用来创建该API的基本信息,展示在文档的页面中(自定义展示的信息)
|
|
|
|
// 用来创建该API的基本信息,展示在文档的页面中(自定义展示的信息)
|
|
|
|
.apiInfo(apiInfo()) |
|
|
|
.apiInfo(apiInfo()) |
|
|
|
// 设置哪些接口暴露给Swagger展示
|
|
|
|
// 设置哪些接口暴露给Swagger展示
|
|
|
@ -60,7 +63,8 @@ public class SwaggerConfig |
|
|
|
.build() |
|
|
|
.build() |
|
|
|
/* 设置安全模式,swagger可以设置访问token */ |
|
|
|
/* 设置安全模式,swagger可以设置访问token */ |
|
|
|
.securitySchemes(securitySchemes()) |
|
|
|
.securitySchemes(securitySchemes()) |
|
|
|
.securityContexts(securityContexts()); |
|
|
|
.securityContexts(securityContexts()) |
|
|
|
|
|
|
|
.pathMapping(pathMapping); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|