|
|
@@ -1,61 +1,61 @@ |
|
|
|
package com.iformall.config; |
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.context.annotation.Bean; |
|
|
|
import org.springframework.context.annotation.Configuration; |
|
|
|
import springfox.documentation.builders.ApiInfoBuilder; |
|
|
|
import springfox.documentation.builders.ParameterBuilder; |
|
|
|
import springfox.documentation.builders.PathSelectors; |
|
|
|
import springfox.documentation.builders.RequestHandlerSelectors; |
|
|
|
import springfox.documentation.schema.ModelRef; |
|
|
|
import springfox.documentation.service.ApiInfo; |
|
|
|
import springfox.documentation.service.Parameter; |
|
|
|
import springfox.documentation.spi.DocumentationType; |
|
|
|
import springfox.documentation.spring.web.paths.RelativePathProvider; |
|
|
|
import springfox.documentation.spring.web.plugins.Docket; |
|
|
|
import springfox.documentation.swagger2.annotations.EnableSwagger2; |
|
|
|
|
|
|
|
import javax.servlet.ServletContext; |
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
//参考:http://blog.csdn.net/catoop/article/details/50668896 |
|
|
|
@Configuration |
|
|
|
@EnableSwagger2 |
|
|
|
public class Swagger2Config { |
|
|
|
|
|
|
|
@Autowired |
|
|
|
private ServletContext servletContext; |
|
|
|
|
|
|
|
@Bean |
|
|
|
public Docket createRestApi() { |
|
|
|
ParameterBuilder tokenPar = new ParameterBuilder(); |
|
|
|
List<Parameter> pars = new ArrayList<Parameter>(); |
|
|
|
//增加一个request的header参数 |
|
|
|
tokenPar.name("token").description("令牌").modelRef(new ModelRef("string")).parameterType("header").required(false).build(); |
|
|
|
pars.add(tokenPar.build()); |
|
|
|
return new Docket(DocumentationType.SWAGGER_2) |
|
|
|
.apiInfo(apiInfo()) |
|
|
|
.select() |
|
|
|
.apis(RequestHandlerSelectors.basePackage("com.iformall.controller")) |
|
|
|
.paths(PathSelectors.any()) |
|
|
|
.build() |
|
|
|
.globalOperationParameters(pars) |
|
|
|
.pathProvider(new RelativePathProvider(servletContext) { |
|
|
|
@Override |
|
|
|
public String getApplicationBasePath() { |
|
|
|
return "/api"; |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
private ApiInfo apiInfo() { |
|
|
|
return new ApiInfoBuilder() |
|
|
|
.title("c端 api") |
|
|
|
.description("c api") |
|
|
|
.termsOfServiceUrl("http://localhost:7000") |
|
|
|
.version("2.0") |
|
|
|
.build(); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
//package com.iformall.config; |
|
|
|
// |
|
|
|
//import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
//import org.springframework.context.annotation.Bean; |
|
|
|
//import org.springframework.context.annotation.Configuration; |
|
|
|
//import springfox.documentation.builders.ApiInfoBuilder; |
|
|
|
//import springfox.documentation.builders.ParameterBuilder; |
|
|
|
//import springfox.documentation.builders.PathSelectors; |
|
|
|
//import springfox.documentation.builders.RequestHandlerSelectors; |
|
|
|
//import springfox.documentation.schema.ModelRef; |
|
|
|
//import springfox.documentation.service.ApiInfo; |
|
|
|
//import springfox.documentation.service.Parameter; |
|
|
|
//import springfox.documentation.spi.DocumentationType; |
|
|
|
//import springfox.documentation.spring.web.paths.RelativePathProvider; |
|
|
|
//import springfox.documentation.spring.web.plugins.Docket; |
|
|
|
//import springfox.documentation.swagger2.annotations.EnableSwagger2; |
|
|
|
// |
|
|
|
//import javax.servlet.ServletContext; |
|
|
|
//import java.util.ArrayList; |
|
|
|
//import java.util.List; |
|
|
|
// |
|
|
|
////参考:http://blog.csdn.net/catoop/article/details/50668896 |
|
|
|
//@Configuration |
|
|
|
//@EnableSwagger2 |
|
|
|
//public class Swagger2Config { |
|
|
|
// |
|
|
|
// @Autowired |
|
|
|
// private ServletContext servletContext; |
|
|
|
// |
|
|
|
// @Bean |
|
|
|
// public Docket createRestApi() { |
|
|
|
// ParameterBuilder tokenPar = new ParameterBuilder(); |
|
|
|
// List<Parameter> pars = new ArrayList<Parameter>(); |
|
|
|
// //增加一个request的header参数 |
|
|
|
// tokenPar.name("token").description("令牌").modelRef(new ModelRef("string")).parameterType("header").required(false).build(); |
|
|
|
// pars.add(tokenPar.build()); |
|
|
|
// return new Docket(DocumentationType.SWAGGER_2) |
|
|
|
// .apiInfo(apiInfo()) |
|
|
|
// .select() |
|
|
|
// .apis(RequestHandlerSelectors.basePackage("com.iformall.controller")) |
|
|
|
// .paths(PathSelectors.any()) |
|
|
|
// .build() |
|
|
|
// .globalOperationParameters(pars) |
|
|
|
// .pathProvider(new RelativePathProvider(servletContext) { |
|
|
|
// @Override |
|
|
|
// public String getApplicationBasePath() { |
|
|
|
// return "/api"; |
|
|
|
// } |
|
|
|
// }); |
|
|
|
// } |
|
|
|
// |
|
|
|
// private ApiInfo apiInfo() { |
|
|
|
// return new ApiInfoBuilder() |
|
|
|
// .title("c端 api") |
|
|
|
// .description("c api") |
|
|
|
// .termsOfServiceUrl("http://localhost:7000") |
|
|
|
// .version("2.0") |
|
|
|
// .build(); |
|
|
|
// } |
|
|
|
// |
|
|
|
//} |