2016-03-15 62 views
1

如果我不包括web.xml文件,則索引文件正常打開但結果頁HelloWorld.jsp正在給出404錯誤,並且包括web.xml索引頁在給出404錯誤時。爲什麼索引頁在Struts 2中給出404錯誤

我有index.jsp文件。 localhost:8080工作正常,但在此之後發生錯誤。

在這裏看到:


enter image description here

+0

的可能的複製[異常起始過濾器的struts2 - 嘗試添加JAR的,但同樣的結果](http://stackoverflow.com/questions/17096637/exception-開始 - 過濾器struts2 - 嘗試 - 添加罐 - 但是相同的結果) –

回答

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

感謝您的幫助。 它爲我工作。 –