分类: 系统运维
2012-01-20 14:24:26
struts2也支持自定义方法,即在struts.xml中的action元素内自定义method属性,属性值即为待执行的方法。其中,该方法的声明要与xxexecute保持一致。但是不推荐使用这种方式,因为它容易导致Action代码混乱。
struts2.xml
<action name = "login" class = "com.shengsiyuan.struts2.LoginAction" method = "myExecute">
<result name = "SUCCESS">/result.jsp result>
action>
修改之后,就不再调用execute(),而直接调用myExecute()方法。