Swagger配置扫描接口以及开关
Posted 一个经常掉线的人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swagger配置扫描接口以及开关相关的知识,希望对你有一定的参考价值。
配置扫描接口
package com.jie.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
import java.util.ArrayList;
@Configuration
@EnableSwagger2 //开启swagger2
public class SwaggerConfig {
@Bean
public Docket docket(){
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
//指导要扫描接口的位置
.apis(RequestHandlerSelectors.basePackage("com.jie.controller"))
//设置全部扫描全部接口
//.apis(RequestHandlerSelectors.any())
//设置过滤路径
//.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo(){
Contact contact = new Contact("jie", "https://www.cnblogs.com/OfflineBoy/", "sb@qq.com");
return new ApiInfo("Swagger 标题测试",
"佛祖保佑",
"1.0",
"urn:tos",
contact,
"Apache 2.0",
"http://www.apache.org/licenses/LICENSE-2.0",
new ArrayList());
}
}
在配置后 swgger页面只有hellocontroller了(没有boot默认的error接口了)
以上是关于Swagger配置扫描接口以及开关的主要内容,如果未能解决你的问题,请参考以下文章
[Swagger2]Swaggr配置扫描接口&&配置Swagger开关