使用Spring自身提供的地址匹配工具匹配URL操作

这篇文章主要介绍了使用Spring自身提供的地址匹配工具匹配URL操作,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

使用Spring自身提供的地址匹配工具匹配URL

 public class PathMatcherUtil { /** * 实际验证路径匹配权限 * * @param matchPath 权限url * @param path      访问路径 * @return 是否拥有权限 */ public static boolean match(String matchPath, String path) { SpringAntMatcher springAntMatcher = new SpringAntMatcher(matchPath, true); return springAntMatcher.matches(path); } /** * 实际验证路径匹配权限 * * @param list 权限url * @param path 访问路径 * @return 是否拥有权限 */ public static boolean matches(Collection list, String path) { for (String s : list) { SpringAntMatcher springAntMatcher = new SpringAntMatcher(s, true); if (springAntMatcher.matches(path)) { return true; } } return false; } /** * 地址表达式匹配工具 */ private static class SpringAntMatcher implements Matcher { private final AntPathMatcher antMatcher; private final String pattern; private SpringAntMatcher(String pattern, boolean caseSensitive) { this.pattern = pattern; this.antMatcher = createMatcher(caseSensitive); } @Override public boolean matches(String path) { return this.antMatcher.match(this.pattern, path); } @Override public Map extractUriTemplateVariables(String path) { return this.antMatcher.extractUriTemplateVariables(this.pattern, path); } private static AntPathMatcher createMatcher(boolean caseSensitive) { AntPathMatcher matcher = new AntPathMatcher(); matcher.setTrimTokens(false); matcher.setCaseSensitive(caseSensitive); return matcher; } } private interface Matcher { boolean matches(String var1); Map extractUriTemplateVariables(String var1); } } 

spring url路径匹配用法经验介绍

在web应用中,需要对请求url路径进行一些判断匹配,完成一定的功能,如进行访问权限的判断,acegi就采用了路径匹配来判断请求url路径是否为合法,但是没有将api抽取出来,用起来还是依赖性太强,不好做轻量级的扩展。

spring提供了工具类AntPathMatcher实现了判断路径匹配,非常简单好用,属轻量级的组件,下面具体谈一下。

先贴一段代码来快速了解一下它的用法

(可以看一下代码注释,比较详细),如下:

 package test.web; import org.springframework.util.AntPathMatcher; import org.springframework.util.PathMatcher; import junit.framework.TestCase; /** * 路径匹配 * @author yandk * @date Feb 15, 2012 */ public class TestAntPathMatcher extends TestCase{ public void testMatch(){ PathMatcher  matcher = new AntPathMatcher(); //  完全路径url方式路径匹配 //  String requestPath="请求路径 //  String patternPath="**/login.jsp";//路径匹配模式 //  不完整路径uri方式路径匹配 //  String requestPath="/app/pub/login.do";//请求路径 //  String patternPath="/**/login.do";//路径匹配模式 //  模糊路径方式匹配 //  String requestPath="/app/pub/login.do";//请求路径 //  String patternPath="/**/*.do";//路径匹配模式 //  包含模糊单字符路径匹配 String requestPath="/app/pub/login.do";//请求路径 String patternPath="/**/lo?in.do";//路径匹配模式 boolean result =matcher.match(patternPath, requestPath); assertTrue(result); } 

注:以上代码取消注释的片段,都能通过测试,使用时可根据具体情况调整即可。

总结如下

ANT方式的通配符有三种

  • ?(匹配任何单字符)
  • *(匹配0或者任意数量的字符)
  • **(匹配0或者更多的目录)

url路径匹配规则

URL路径说明
/app/*.x匹配(Matches)所有在app路径下的.x文件
/app/p?ttern匹配(Matches) /app/pattern 和 /app/pXttern,但是不包括/app/pttern
/**/example匹配(Matches) /app/example, /app/foo/example, 和 /example
/app/**/dir/file.匹配(Matches) /app/dir/file.jsp, /app/foo/dir/file.html,/app/foo/bar/dir/file.pdf, 和 /app/dir/file.java
/**/*.jsp匹配(Matches)任何的.jsp 文件

最长匹配原则(has more characters)

说明,URL请求/app/dir/file.jsp,现在存在两个路径匹配模式/**/*.jsp和/app/dir/*.jsp,那么会根据模式/app/dir/*.jsp来匹配

以上为个人经验,希望能给大家一个参考,也希望大家多多支持html中文网。

以上就是使用Spring自身提供的地址匹配工具匹配URL操作的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » Java