You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
69 lines
2.1 KiB
/**
|
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
|
*
|
|
* https://www.renren.io
|
|
*
|
|
* 版权所有,侵权必究!
|
|
*/
|
|
|
|
package com.epmet.config;
|
|
|
|
import com.epmet.commons.tools.constant.Constant;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import springfox.documentation.builders.ApiInfoBuilder;
|
|
import springfox.documentation.builders.PathSelectors;
|
|
import springfox.documentation.builders.RequestHandlerSelectors;
|
|
import springfox.documentation.service.ApiInfo;
|
|
import springfox.documentation.service.ApiKey;
|
|
import springfox.documentation.spi.DocumentationType;
|
|
import springfox.documentation.spring.web.plugins.Docket;
|
|
import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
|
|
|
import java.util.List;
|
|
|
|
import static com.google.common.collect.Lists.newArrayList;
|
|
|
|
/**
|
|
* Swagger配置
|
|
*
|
|
* @author Mark sunlightcs@gmail.com
|
|
* @since 1.0.0
|
|
*/
|
|
@Configuration
|
|
@EnableSwagger2
|
|
public class SwaggerConfig {
|
|
|
|
@Bean
|
|
public Docket createRestApi() {
|
|
return new Docket(DocumentationType.SWAGGER_2)
|
|
.apiInfo(apiInfo())
|
|
.select()
|
|
//加了ApiOperation注解的类,才生成接口文档
|
|
.apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
|
|
//包下的类,才生成接口文档
|
|
//.apis(RequestHandlerSelectors.basePackage("io.renren.controller"))
|
|
.paths(PathSelectors.any())
|
|
.build()
|
|
.directModelSubstitute(java.util.Date.class, String.class)
|
|
.securitySchemes(security());
|
|
|
|
}
|
|
|
|
private ApiInfo apiInfo() {
|
|
return new ApiInfoBuilder()
|
|
.title("人人开源")
|
|
.description("认证模块开发文档")
|
|
.termsOfServiceUrl("https://www.renren.io/community")
|
|
.version("1.1.0")
|
|
.build();
|
|
}
|
|
|
|
private List<ApiKey> security() {
|
|
return newArrayList(
|
|
new ApiKey(Constant.TOKEN_HEADER, Constant.TOKEN_HEADER, "header")
|
|
);
|
|
}
|
|
|
|
}
|
|
|