刚接触shiro,遇到这个问题,正好测试又等着测,很急。网上很多对这个异常的处理文章,但内容基本相似,都说是shiroFilter和securityManager顺序问题。但是网上提供的方法都没能解决问题。此外网上的问题大多都没有描述清楚,导致耗费了很多时间。
为了避免其他人像我一样在无效的方案上浪费时间,我先把问题描述清楚。如果你的异常跟我很类似,再往下看。
这个异常的完整信息如下:
ERROR o.a.c.c.C.[.[localhost].[/].[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] threw exception
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.
at org.apache.shiro.SecurityUtils.getSecurityManager(SecurityUtils.java:123)
at org.apache.shiro.subject.Subject$Builder.<init>(Subject.java:626)
at org.apache.shiro.SecurityUtils.getSubject(SecurityUtils.java:56)
请注意第一个“at”开头的句子。跟踪这个句子进去,可以看到是由于ThreadContext没有获取到securityManager。如下图。