spring security 3中的AntUrlPathMatcher不能匹配*?
我发现spring security 3中,
如果请求的地址/abc/abc.action?ss=1&ddd=3
需要保护资源的地址设置为/abc/abc.action**
spring security 3中的AntUrlPathMatcher中,
while (ite.hasNext()) {
String resURL = ite.next();
System.out.println("resUrl"+resURL);
if (urlMatcher.pathMatchesUrl(requestUrl, resURL)) {
return resourceMap.get(resURL);
}
这里不能匹配?