20235 [http-bio-8080-exec-10] INFO o.a.shiro.realm.AuthorizingRealm - No cache or cacheManager properties have been set. Authorization cache cannot be obtained. 原因是:自定义的Realm文件在继承AuthorizingRealm 时,没有设置cache或者cacheManager属性 解决办法有两种: 1.是关闭cache <bean…
项目中用spring shiro来处理权限的问题,但是启动的时候会打印如下日志 org.apache.shiro.realm.AuthorizingRealm - No cache or cacheManager properties have been set. Authorization cache cannot be obtained. 检查了basicRelam配置如下 <bean id="basicRealm" class="com.ebon.platform…
Spring框架从version3.1开始支持cache,并在version4.1版本中对cache功能进行了增强. spring cache 的关键原理就是 spring AOP,通过 spring AOP,其实现了在方法调用前.调用后获取方法的入参和返回值,进而实现了缓存的逻辑.关于Spring Cache原理的详细介绍,参见http://blog.csdn.net/guugle2010/article/details/40115675 1.采用Spring的默认开箱即用的cache(Out…