我們正在將我們的應用程序從Struts 1.2轉換爲2.16。我已經添加了需要的jar,現在我正在將struts_config.xml轉換爲struts.xml。以下是我struts-config.xml<global-forwards> in struts 2
<struts-config>
<global-forwards>
<!-- Default forward to "Welcome" action -->
<!-- Demonstrates using index.jsp to forward -->
<forward name="welcome" path="/Welcome.do"/>
<forward name="family" path="/Employee.do"/>
<forward name="line" path="/Owner.do"/>
</global-forwards>
<action-mappings>
<action path="/Welcome" forward="/pages/welcome.jsp"/>
<action path="/Employee" forward="/pages/employeejsp"/>
<action path="/Owner" forward="/pages/owner.jsp"/>
</action-mappings>
</stuts-config>
我不能將Global_forwards轉換爲global_results。當試圖訪問獲取空白頁面的頁面並且不會拋出任何錯誤時。添加devmode還沒有運氣。
任何人都可以幫助我。
感謝
不應該有前鋒,但重定向。 –
Struts2!= Struts1 –