One or more Filters failed to start

使用springMvc结合shiro配置完后,启动项目报

09-Nov-2018 15:34:43.295 严重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal One or more Filters failed to start. Full details will be found in the appropriate container log file
09-Nov-2018 15:34:43.295 严重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal Context [/shiroDemo] startup failed due to previous errors

由于使用的开发工具是idea,所以需要到idea的目录找到tomcat的日志

One or more Filters failed to start_第1张图片

查看日志,发现对应的filter找不到

One or more Filters failed to start_第2张图片 此时的wex.xml

One or more Filters failed to start_第3张图片

本来以为filter中的filter-name是可以随意起名的,但是不行了,需要与shiro的配置文件相对应,不然找不到

 One or more Filters failed to start_第4张图片

发现我这2个名字是对应不上的,将web.xml中的名字改为 shiroFiler,在启动项目就好了

有喜欢的朋友可以关注下头条号《老徐聊技术》

你可能感兴趣的:(shiro)