linux怎么查看本机内存大小
265
2022-12-10
使用Spring自身提供的地址匹配工具匹配URL操作
目录使用Spring自身提供的地址匹配工具匹配URLspring url路径匹配用法经验介绍先贴一段代码来快速了解一下它的用法总结如下ANT方式的通配符有三种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(Collhttp://ection
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
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
}
}
spring url路径匹配用法经验介绍
在web应用中,需要对请求url路径进行一些判断匹配,完成一定的功能,如进行访问权限的判断,acegi就采用了路径匹配来判断请求url路径是否为合法,http://但是没有将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="请求路径 MKKHSUlX
// 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方式的通配符有三种
http://
?(匹配任何单字符)
*(匹配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来匹配
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~