记录:shrio整合redis后@Cacheable缓存失效
2020-03-18 本文已影响0人
微微一笑倾半城
问题:
在搭建项目框架中,使用spring boot、mybatis plus、shiro、redis整合后,发现在自定义realm中调用到用户service类进行用户信息缓存失,@Cacheable生效。
解决方法:
在用到的service上加入懒加载注解@Lazy可以解决
image.png在搭建项目框架中,使用spring boot、mybatis plus、shiro、redis整合后,发现在自定义realm中调用到用户service类进行用户信息缓存失,@Cacheable生效。
在用到的service上加入懒加载注解@Lazy可以解决
image.png