我是Struts2的新手。当我编辑web.xml
<filter>
<filter-name>struts2></filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
我收到错误: localhost上的服务器Tomcat v8.0服务器无法启动。
我该怎么办?
答案 0 :(得分:0)
您应该检查您在<filter-class>
中编写的类是否存在于类路径中,即在使用该应用程序部署的jar中。
阅读Struts2应用程序中使用的web.xml
。如果您使用的是Struts 2.5.x,则该类应为
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>