fix: 修改路径判断可以是antpath也可以是正则

This commit is contained in:
Bunny 2024-10-25 00:12:59 +08:00
parent d5850f66dd
commit c1d691c85e
1 changed files with 5 additions and 3 deletions

View File

@ -16,7 +16,6 @@ import org.springframework.security.core.Authentication;
import org.springframework.security.web.access.intercept.RequestAuthorizationContext;
import org.springframework.security.web.util.matcher.AntPathRequestMatcher;
import org.springframework.stereotype.Component;
import org.springframework.util.StringUtils;
import java.util.List;
import java.util.function.Supplier;
@ -73,8 +72,11 @@ public class CustomAuthorizationManagerServiceImpl implements AuthorizationManag
// 判断是否与请求路径匹配
return powerList.stream().map(Power::getRequestUrl)
.anyMatch(requestUrl -> {
boolean antMatcher = StringUtils.hasText(requestUrl) && new AntPathRequestMatcher(requestUrl).matches(request);
return antMatcher || requestURI.matches(requestUrl);
if (requestUrl.contains("/*") || requestUrl.contains("/**")) {
return new AntPathRequestMatcher(requestUrl).matches(request);
} else {
return requestURI.matches(requestUrl);
}
});
}
}