Spring Boot从入门到放弃-整合Shiro报错
作者:互联网
整合Shiro时SecurityManager这个方法报错:
Incompatible types.:
Required: java.lang.SecurityManager
Found:org.apache.shiro.web.mgt.DefaultWebSecurityManager
找了半天包都是引入了,但就是报错,这怎么办呢?
既然返回值类型为 SecurityManager,它既然是一个类,但又没引入,可能与 DefaultWebSecurityManager相互干扰了,所以我就大胆尝试了一下,引入了一个包:
import org.apache.shiro.mgt.SecurityManager;
然后。。。
他就好了。也可以正常使用了。
会上树的小可爱 发布了51 篇原创文章 · 获赞 112 · 访问量 11万+ 私信 关注标签:DefaultWebSecurityManager,SecurityManager,Spring,Boot,报错,shiro,mgt,Shiro 来源: https://blog.csdn.net/qq_37857921/article/details/104127347