mirror of https://github.com/elunez/eladmin
63 lines
1.9 KiB
Java
63 lines
1.9 KiB
Java
package me.zhengjie.swagger2;
|
|
|
|
import com.google.common.base.Predicates;
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
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.schema.ModelRef;
|
|
import springfox.documentation.service.ApiInfo;
|
|
import springfox.documentation.service.Parameter;
|
|
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;
|
|
|
|
/**
|
|
* api页面 /swagger-ui.html
|
|
* @author Zheng Jie
|
|
* @date 2018-11-23
|
|
*/
|
|
|
|
@Configuration
|
|
@EnableSwagger2
|
|
public class SwaggerConfig {
|
|
|
|
@Value("${jwt.header}")
|
|
private String tokenHeader;
|
|
|
|
@Value("${swagger.enabled}")
|
|
private Boolean enabled;
|
|
|
|
@Bean
|
|
public Docket createRestApi() {
|
|
ParameterBuilder ticketPar = new ParameterBuilder();
|
|
List<Parameter> pars = new ArrayList<Parameter>();
|
|
ticketPar.name(tokenHeader).description("token")
|
|
.modelRef(new ModelRef("string"))
|
|
.parameterType("header")
|
|
.defaultValue("Bearer ")
|
|
.required(true)
|
|
.build();
|
|
pars.add(ticketPar.build());
|
|
return new Docket(DocumentationType.SWAGGER_2)
|
|
.enable(enabled)
|
|
.apiInfo(apiInfo())
|
|
.select()
|
|
.paths(Predicates.not(PathSelectors.regex("/error.*")))
|
|
.build()
|
|
.globalOperationParameters(pars);
|
|
}
|
|
|
|
private ApiInfo apiInfo() {
|
|
return new ApiInfoBuilder()
|
|
.title("eladmin 接口文档")
|
|
.version("2.0")
|
|
.build();
|
|
}
|
|
|
|
}
|