問題陳述動態方法調用在Struts2
Jsp
<s:a href="newUser.action" > New User SignIn</s:a>
Struts.xml
<action name="*User" method="{1}" class="action.NewUser">
<result name="populate">/jsp/registerUser.jsp</result>
<result name="success">/jsp/success.jsp</result>
</action>
Action Class has the method
populate(){
}
我想使用STRUTS2的動態方法調用設施。通常,框架將*字替換爲struts.xml文件的方法屬性。 有沒有一種方法可以使用不同的方法名稱。在我的情況下,框架將方法名new()附加到struts.xml文件中,但我在action類中有一個名爲populate()的方法。
這是標準方式通配符映射將起作用。 – 2012-03-05 07:32:32