2021-04-07 08:02

多谢, 改造成功~~

2019-11-01 10:01

多谢, 找到了. 现在看文档一般只根据需求看, 不会看通篇

2019-10-31 09:32

权限控制有时需要在/controller级,有时需要在/controller/action级,引入AntPathMatcher , 是为了匹配 /controller/*, /controller/**之类的权限字符串, 各位有什么好的建议

2019-10-30 21:19

boolean matched = false;
String path = inv.getActionKey();
AntPathMatcher antPathMatcher = new AntPathMatcher();
for(String permission: userSession.getPermissions()){
if(antPathMatcher.match(permission,path)){
matched = true;
break;
}
}
Interceptor中代码如上, 就想替换掉里面用的AntPathMatcher , 搜索了好久, 好象只在org.srpingframework.core中有

2017-08-16 09:00

生产环境tomcat7,要在web.xml中加个过滤器org.apache.catalina.filters.SetCharacterEncodingFilter, 你可用这个关键字去搜百度,这里贴不了代码

2017-08-16 08:43

我使用FstSerializer也不时出现此类错误,换成JdkSerializer后就再也不出此类错误了

2017-07-27 12:44

感谢波总,后来我把Job的频次调到每秒一次,最终发现是Cache中没有setnx,就使用getJedis()取连接来用,却没有关闭连接。现在连接数曲线平坦了,再次感谢~~