Closed letbingo closed 4 years ago
在测试springboot集成shiro部分的demo时,直接跑是可以跑通的,但是把JPA换成Mybatis之后就一直无法进入到doGetAuthorizationInfo,后来找到原因是需要在pom.xml中添加spring-boot-starter-aop,希望大家注意。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency>`
在测试springboot集成shiro部分的demo时,直接跑是可以跑通的,但是把JPA换成Mybatis之后就一直无法进入到doGetAuthorizationInfo,后来找到原因是需要在pom.xml中添加spring-boot-starter-aop,希望大家注意。