org.apache.shiro.UnavailableSecurityManagerException: No SecurityManager accessible to the calling code, either bound to the org.apache.shiro.util.ThreadContext or as a vm static singleton. This is an invalid application configuration.
出现了上述的问题,怎么也想不通问题出现在什么地方。无效的配置。纠结了一天了,就是把配置文件重新做一下也还是没有修正问题。很苦恼。
天见犹怜,最后实在不行就只能找不同。
引用的shiro的依赖不同。
失败的引入依赖是:
<dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring-boot-starter</artifactId> <version>1.4.0</version> </dependency>
成功的引入依赖的是:
<dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring-boot-web-starter</artifactId> <version>1.4.0</version> </dependency>
至此,问题解决。