jfinal-utils

来源:互联网 发布:淘宝带刷 编辑:程序博客网 时间:2024/06/05 09:56

jfinal-utils

jfinal utils,查看其他插件-> Maven

maven 引用 ${jfinal-utils.version}替换为相应的版本如:0.2

<dependency> <groupId>cn.dreampie</groupId> <artifactId>jfinal-utils</artifactId> <version>${jfinal-utils.version}</version></dependency>

加密工具类

//md5加密EncriptionKit.encrypt(string)//文本hash加密 salt是加密密钥EncriptionKit.textEncrypt(string,salt)//文本hash解密EncriptionKit.textDecrypt(string,salt)

url匹配工具,shiro的url过滤使用

AntPathMatcher antPathMatcher = new AntPathMatcher();//判断url是否匹配antPathMatcher.match(srcUrl, destUrl)

freemarker模板解析工具

FreemarkerLoader  loader= new  FreemarkerLoader("/template",filepath);loader.setValue(key,value);loader.getHtml()

class文件扫描工具类

ClassSearchKit.of(Model.class).includepaths(includeClassPaths).search();

正则验证

//判断空ValidateKit.isNullOrEmpty(string)//支持电话,手机,邮件,邮编,中文,字母,数字,正整数等等...请看源码
0 0