首页 > 代码库 > Struts2学习第七课 ActionSupport

Struts2学习第七课 ActionSupport

com.opensymphony.xwork2.ActionSupport类是默认的Action类,如果某个Action节点没有配置class属性,则ActionSupport即为待执行的Action类,而execute方法即为要默认执行的方法。

<action name="testActionSupport">
    <result>/testActionSupport.jsp</result>
</action>

等同于

<action name="testActionSupport" class="com.opensymphony.xwork2.ActionSupport" method="execute">
    <result name="success">/testActionSupport.jsp</result>
</action>

 

在编写Action类时,通常会对这个类进行扩展

在手工完成字段验证,显示错误消息,国际化等情况下,推荐继承ActionSupport。

Struts2学习第七课 ActionSupport