作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个关于 Ant 匹配器的问题。我想创建一个不应用于特定 URL 的 spring 安全过滤器。
要忽略此 url,我正在使用 AntPathRequestMatcher
:
AntPathRequestMatcher ignored = new AntPathRequestMatcher("**/MyURL/**");
其实我认为它会匹配所有包含“MyURL”的 URL。但我错了。
if(ignored.matches(httpReq)) {
log.info(ignored.toString()+" matches "+httpReq.getRequestURI());
} else {
log.info(ignored.toString()+" does not match "+httpReq.getRequestURI());
}
上面的 if 部分带给我
Ant [pattern='**/myurl/**'] does not match /resource/MyURL/
在我发出请求时登录。花纹should be case unsensitive .
最佳答案
作为@M. Deinum编写的模式必须以 /
开头,请参阅 AntPathMatcher :
Note: a pattern and a path must both be absolute or must both be relative in order for the two to match. Therefore it is recommended that users of this implementation to sanitize patterns in order to prefix them with "/" as it makes sense in the context in which they're used.
protected boolean More ...doMatch(String pattern, String path, boolean fullMatch, Map<String, String> uriTemplateVariables) {
if (path.startsWith(this.pathSeparator) != pattern.startsWith(this.pathSeparator)) {
return false;
}
关于java - Spring AntRequestMatcher 不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34266595/
我有一个关于 Ant 匹配器的问题。我想创建一个不应用于特定 URL 的 spring 安全过滤器。 要忽略此 url,我正在使用 AntPathRequestMatcher: AntPathRequ
我是一名优秀的程序员,十分优秀!