|
|
@@ -9,12 +9,10 @@ import springfox.documentation.builders.PathSelectors;
|
|
|
import springfox.documentation.builders.RequestHandlerSelectors;
|
|
|
import springfox.documentation.service.ApiInfo;
|
|
|
import springfox.documentation.service.ApiKey;
|
|
|
-import springfox.documentation.service.SecurityScheme;
|
|
|
import springfox.documentation.spi.DocumentationType;
|
|
|
import springfox.documentation.spring.web.plugins.Docket;
|
|
|
import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
|
import static com.google.common.collect.Lists.newArrayList;
|
|
|
@@ -26,30 +24,30 @@ public class SwaggerConfig implements WebMvcConfigurer {
|
|
|
@Bean
|
|
|
public Docket createRestApi() {
|
|
|
return new Docket(DocumentationType.SWAGGER_2)
|
|
|
- .apiInfo(apiInfo()).enable(false)
|
|
|
- .select()
|
|
|
- //加了ApiOperation注解的类,才生成接口文档
|
|
|
- .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
|
|
|
- //包下的类,才生成接口文档
|
|
|
- // .apis(RequestHandlerSelectors.basePackage("com.sqx.controller"))
|
|
|
- .paths(PathSelectors.any())
|
|
|
- .build()
|
|
|
- .securitySchemes(security());
|
|
|
+ .apiInfo(apiInfo())
|
|
|
+ .select()
|
|
|
+ //加了ApiOperation注解的类,才生成接口文档
|
|
|
+ .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
|
|
|
+ //包下的类,才生成接口文档
|
|
|
+ //.apis(RequestHandlerSelectors.basePackage("com.sqx.controller"))
|
|
|
+ .paths(PathSelectors.any())
|
|
|
+ .build()
|
|
|
+ .securitySchemes(security());
|
|
|
}
|
|
|
|
|
|
private ApiInfo apiInfo() {
|
|
|
return new ApiInfoBuilder()
|
|
|
- .title("")
|
|
|
- .description("sqx-fast文档")
|
|
|
- .termsOfServiceUrl("")
|
|
|
- .version("3.0.0")
|
|
|
- .build();
|
|
|
+ .title("")
|
|
|
+ .description("sqx-fast文档")
|
|
|
+ .termsOfServiceUrl("")
|
|
|
+ .version("3.0.0")
|
|
|
+ .build();
|
|
|
}
|
|
|
|
|
|
- private List<SecurityScheme> security() {
|
|
|
- List<SecurityScheme> result = new ArrayList<>();
|
|
|
- ApiKey apiKey = new ApiKey("ApiKeyAuth", "Authorization", "header");
|
|
|
- result.add(apiKey);
|
|
|
- return result;
|
|
|
+ private List<ApiKey> security() {
|
|
|
+ return newArrayList(
|
|
|
+ new ApiKey("token", "token", "header")
|
|
|
+ );
|
|
|
}
|
|
|
+
|
|
|
}
|