难者不会会者不难
IP属地:北京
找了两天终于找到问题所在,感谢大佬。
以下是我的解决方法:
在 Shiro 过滤器配置中用到的业务类在注入时加上 @Lazy 让其懒加载可以解决,
例如下边这样:
@Autowired
@Lazy
private ILoginService loginService;
@Autowired
@Lazy
private IRoleService roleService;
@Autowired
@Lazy
private IMenuService menuService;
引入shiro后userService事务不生效原因(is not eligible for getting processed by all BeanPostProcessors)系统spring集成了shiro,配置shiroFilter: shiroFilter依赖了securityManager,securityManager依赖了userRea...