0
我把一個標籤Struts行爲問題
<form action="/emailConfig.do">
在我的jsp頁面 和 放動作struts_config.xml文件
<action path="/emailConfig" type="a.b.EmailConfigAction" name="emailConfigForm"
scope="request" validate="false">
<forward name="success" path="/emailConfig.jsp" />
<forward name="failure" path="/emailConfig.jsp" />
</action>
但是當我進行任何活動(點擊按鈕/鏈接單擊)頁面不會顯示,但會出現一個異常,即
「請求的資源(/emailConfig.do)不可用。」
任何人都可以幫我解決我失蹤的問題嗎?
PS:系統永遠不會到達Action類(我打開調試器)。它在此之前失敗。 –
您是否重新啓動應用程序服務器?如何針對'ActionServlet'配置web.xml,特別是urlmapping。確定它是'* .do''? 「emailConfig.jsp」的路徑指向您項目的webroot。 – Sal
是的,我重新啓動它。是web.xml設置爲.do –