为什么索引页在Struts 2中给出404错误

时间:2016-03-15 03:37:32

标签: struts2 http-status-code-404 web.xml

如果我不包含web.xml文件,则索引文件正常打开但结果页面HelloWorld.jsp给出404错误,并且当包含web.xml索引页面时给出404错误。

我有index.jsp个文件。 localhost:8080工作正常但在此之后却出错了。

见这里:

enter image description here

1 个答案:

答案 0 :(得分:0)

在第一种情况下,索引文件由默认servlet打开,该服务器上可用。

在第二种情况下,您使用已弃用的FilterDispatcher

您应该将Struts升级到最新版本并使用

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

了解如何编写Web应用程序描述符web.xml

  

简单示例

     

为框架配置web.xml是添加过滤器的问题   和过滤映射。

     

FilterDispatcher示例(web.xml):

<web-app id="WebApp_9" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

    <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>

    <!-- ... -->

</web-app>