使用Spring自身提供的地址匹配工具匹配URL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
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<String> 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<String, String> 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<String, String> extractUriTemplateVariables(String var1);
}
}
|
spring url路径匹配用法经验介绍
在web应用中,需要对请求url路径进行一些判断匹配,完成一定的功能,如进行访问权限的判断,acegi就采用了路径匹配来判断请求url路径是否为合法,但是没有将api抽取出来,用起来还是依赖性太强,不好做轻量级的扩展。
spring提供了工具类AntPathMatcher实现了判断路径匹配,非常简单好用,属轻量级的组件,下面具体谈一下。
先贴一段代码来快速了解一下它的用法
(可以看一下代码注释,比较详细),如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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来匹配
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/a627428179/article/details/96327458