|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.haiwei.web.core.config;
|
|
|
|
|
|
|
|
|
|
import com.google.common.collect.Ordering;
|
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@ -24,9 +25,10 @@ import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
|
|
|
|
*/
|
|
|
|
|
@Configuration
|
|
|
|
|
@EnableSwagger2
|
|
|
|
|
public class SwaggerConfig
|
|
|
|
|
{
|
|
|
|
|
/** 是否开启swagger */
|
|
|
|
|
public class SwaggerConfig {
|
|
|
|
|
/**
|
|
|
|
|
* 是否开启swagger
|
|
|
|
|
*/
|
|
|
|
|
@Value("${swagger.enabled}")
|
|
|
|
|
private boolean enabled;
|
|
|
|
|
|
|
|
|
@ -34,8 +36,7 @@ public class SwaggerConfig
|
|
|
|
|
* 创建API
|
|
|
|
|
*/
|
|
|
|
|
@Bean
|
|
|
|
|
public Docket createRestApi()
|
|
|
|
|
{
|
|
|
|
|
public Docket createRestApi() {
|
|
|
|
|
return new Docket(DocumentationType.SWAGGER_2)
|
|
|
|
|
// 是否启用Swagger
|
|
|
|
|
.enable(enabled)
|
|
|
|
@ -44,10 +45,11 @@ public class SwaggerConfig
|
|
|
|
|
// 设置哪些接口暴露给Swagger展示
|
|
|
|
|
.select()
|
|
|
|
|
// 扫描所有有注解的api,用这种方式更灵活
|
|
|
|
|
// .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
|
|
|
|
|
.apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
|
|
|
|
|
// 扫描指定包中的swagger注解
|
|
|
|
|
.apis(RequestHandlerSelectors.basePackage("com.haiwei.web.controller.broad"))
|
|
|
|
|
// 扫描所有 .apis(RequestHandlerSelectors.any())
|
|
|
|
|
// .apis(RequestHandlerSelectors.basePackage("com.haiwei.web.controller.broad"))
|
|
|
|
|
// 扫描所有
|
|
|
|
|
// .apis(RequestHandlerSelectors.any())
|
|
|
|
|
.paths(PathSelectors.any())
|
|
|
|
|
.build()
|
|
|
|
|
// .operationOrdering(new Ordering<Operation>() {
|
|
|
|
@ -65,11 +67,11 @@ public class SwaggerConfig
|
|
|
|
|
// .operationsSorter(OperationsSorter.ALPHA)
|
|
|
|
|
// .build();
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 添加摘要信息
|
|
|
|
|
*/
|
|
|
|
|
private ApiInfo apiInfo()
|
|
|
|
|
{
|
|
|
|
|
private ApiInfo apiInfo() {
|
|
|
|
|
// 用ApiInfoBuilder进行定制
|
|
|
|
|
return new ApiInfoBuilder()
|
|
|
|
|
// 设置标题
|
|
|
|
|