下面是报错的内容 15-Dec-2021 17:48:33.290 SEVERE [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal Error filterStart 15-Dec-2021 17:48:33.290 SEVERE [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal Context [/crowdfunding02_admin_webui_war_exploded] startup failed due to previous errors
网上说的大部分是一些mapper.xml的namespace写错了,还有一些其他的,但是我的对着的,并没有毛病。 当下,你就可以将你的web.xml删除然后从新启动一遍你的项目,如果能启动起来说明你的web.xml里的配置有问题。 我的问题在于我在web.xml里面加了SpringSecurity的过滤器,如下:
<!--加入 SpringSecurity 控制权限的 Filter-->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
|