update: hutool 5.6.1 ==> 5.7.22

This commit is contained in:
xingyu
2022-07-22 12:08:59 +08:00
parent 14594e492e
commit 9bdae339cc
6 changed files with 8 additions and 8 deletions

View File

@ -95,7 +95,7 @@ public class YudaoSwaggerAutoConfiguration {
return Collections.singletonList(SecurityContext.builder()
.securityReferences(securityReferences())
// 通过 PathSelectors.regex("^(?!auth).*$"),排除包含 "auth" 的接口不需要使用securitySchemes
.forPaths(PathSelectors.regex("^(?!auth).*$"))
.operationSelector(o -> o.requestMappingPattern().matches("^(?!auth).*$"))
.build());
}