使用Struts 2时如何配置web.xml?

时间:2017-03-05 19:46:56

标签: java xml struts2 web.xml

我是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服务器无法启动。

我该怎么办?

1 个答案:

答案 0 :(得分:0)

您应该检查您在<filter-class>中编写的类是否存在于类路径中,即在使用该应用程序部署的jar中。

阅读Struts2应用程序中使用的web.xml。如果您使用的是Struts 2.5.x,则该类应为

<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>

您可能还想知道How to add Struts2 filter without web.xml