1
我使用的Struts2 +瓷磚2請求的資源不可使用Struts 2 - 瓷磚
我使用迭代器動態生成我的JSP頁面上的超鏈接,並將它們映射到一個單一的動作類。
我struts.xml
是:
<action name="actionName" method="execute"
class="myClass">
<result name="error" type="tiles">/error.tiles</result>
// some more result tags
</action>
和我的超鏈接是:
<a href="/myTilesProjName/actionName?hyperlink=<s:property value="ID"/>">
<s:property value="ID"/>
</a>
我已經聲明爲myClass
字符串的超鏈接,並有getter/setter方法爲它 ,當我執行我得到404 error: requested resource ... actionName .... not available
我在哪裏出錯了?