|
|
|
@ -17,9 +17,6 @@ import springfox.documentation.swagger2.annotations.EnableSwagger2WebMvc;
|
|
|
|
|
@EnableSwagger2WebMvc
|
|
|
|
|
public class Knife4jConfiguration {
|
|
|
|
|
|
|
|
|
|
@Value("${knife4j.enable:false}")
|
|
|
|
|
private boolean enable;
|
|
|
|
|
|
|
|
|
|
@Bean(value = "defaultApi2")
|
|
|
|
|
public Docket defaultApi2() {
|
|
|
|
|
Docket docket = new Docket(DocumentationType.SWAGGER_2)
|
|
|
|
@ -28,7 +25,6 @@ public class Knife4jConfiguration {
|
|
|
|
|
.description("UDI管理系统后台 - APIS")
|
|
|
|
|
.version("1.0")
|
|
|
|
|
.build())
|
|
|
|
|
.enable(enable)
|
|
|
|
|
.select()
|
|
|
|
|
//这里指定Controller扫描包路径
|
|
|
|
|
.apis(RequestHandlerSelectors.basePackage("com.glxp.api.controller"))
|
|
|
|
|