mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-26 09:11:52 +08:00
fix swagger 的基础扫描路径不正确
This commit is contained in:
parent
47753467ee
commit
a1a01cd117
@ -22,6 +22,8 @@ import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
|||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import static springfox.documentation.builders.RequestHandlerSelectors.basePackage;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Swagger2 自动配置类
|
* Swagger2 自动配置类
|
||||||
*
|
*
|
||||||
@ -56,7 +58,7 @@ public class YudaoSwaggerAutoConfiguration {
|
|||||||
.apiInfo(apiInfo(properties))
|
.apiInfo(apiInfo(properties))
|
||||||
// 设置扫描指定 package 包下的
|
// 设置扫描指定 package 包下的
|
||||||
.select()
|
.select()
|
||||||
// .apis(basePackage(properties.getBasePackage()))
|
.apis(basePackage(properties.getBasePackage()))
|
||||||
// .apis(basePackage("cn.iocoder.yudao.module.system")) // 可用于 swagger 无法展示时使用
|
// .apis(basePackage("cn.iocoder.yudao.module.system")) // 可用于 swagger 无法展示时使用
|
||||||
.paths(PathSelectors.any())
|
.paths(PathSelectors.any())
|
||||||
.build()
|
.build()
|
||||||
|
Loading…
Reference in New Issue
Block a user