spring security 3中的AntUrlPathMatcher不能匹配*?

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);
}

这里不能匹配?

可以匹配;
1、AntUrlPathMatcher在spring3.1已经去掉了,变为更简单的AntPathRequestMatcher
2、建议直接使用AntPathMatcher或