Spring中的工具类

Spring的工具类比较实用噢,这里仅仅只举几个例子


package com.itheima.sh.test;


public abstract class PatternMatchUtils {


public static boolean simpleMatch(String pattern, String str) {
if (pattern == null || str == null) {
return false;
}
int firstIndex = pattern.indexOf('*');
if (firstIndex == -1) {
return pattern.equals(str);
}
if (firstIndex == 0) {
if (pattern.length() == 1) {
return true;
}
int nextIndex = pattern.indexOf('*', firstIndex + 1);
if (nextIndex == -1) {
return str.endsWith(pattern.substring(1));
}
String part = pattern.substring(1, nextIndex);
int partIndex = str.indexOf(part);
while (partIndex != -1) {
if (simpleMatch(pattern.substring(nextIndex), str.substring(partIndex + part.length()))) {
return true;
}
partIndex = str.indexOf(part, partIndex + 1);
}
return false;
}
return (str.length() >= firstIndex &&
pattern.substring(0, firstIndex).equals(str.substring(0, firstIndex)) &&
simpleMatch(pattern.substring(firstIndex), str.substring(firstIndex)));
}


public static boolean simpleMatch(String[] patterns, String str) {
if (patterns != null) {
for (int i = 0; i < patterns.length; i++) {
if (simpleMatch(patterns[i], str)) {
return true;
}
}
}
return false;
}

}

测试用例:
package com.itheima.sh.test;

import org.junit.Test;

public class UtilsTest {
@Test
public void test(){
String[] patterns={"save*","update*","delete*"};
boolean simpleMatch = PatternMatchUtils.simpleMatch(patterns, "updateUser");
System.out.println(simpleMatch);
}
}

看到这里是否想起了Spring中的AOP:的切入点匹配表达式了,对的用的就是这个工具类;;
里面还有很多其他的工具类,这里截个图:
Spring中的工具类 - passion - passion
  里面的StringUtils,ObjectUtils,CollectionUtils非常实用;其他的我也正在研究中,要用的时候自己慢慢查
<script type="text/javascript" id="wumiiRelatedItems"> </script>
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值