首页 > 代码库 > 第五课 Struts的控制器【续】Action类的execute()方法

第五课 Struts的控制器【续】Action类的execute()方法

1.Action类的execute()方法:
public ActionForward execute(ActionMapping mapping,
                                                ActionForm form,
                                                HttpServletRequest request,
                                                HttpServletResponse response)

        throws IOException, ServletException ;

2.Action类的execute()方法的参数和返回值:
– execute()方法包含以下参数:
–ActionMapping:包含了这个Action的配置信息,和strutsconfig.xml文件中的<action>元素对应。
–ActionForm:包含了用户的表单数据,当Struts框架调用
  execute()方法时,ActionForm中的数据已经通过了表单验证。
–HttpServletRequest:当前的HTTP请求对象
–HttpServletResponse:当前的HTTP响应对象
–Action类的execute()方法返回ActionForward对象,它包含了请求转发路径信息。

3.内置的Struts Action类:
–org.apache.struts.actions.ForwardAction
–org.apache.struts.actions.IncludeAction
–org.apache.struts.actions.DispatchAction
–org.apache.struts.actions.LookupDispatchAction
–org.apache.struts.actions.SwitchAction。

4.模型代表应用的业务数据和业务逻辑。Struts作为一个WEB框架并没有为创建模型组件提供现成的
框架。但是Struts允许使用其它模型框架来处理应用的业务逻辑。比如:EJB、JDO、JavaBean、
ORM、Spring等。


第五课 Struts的控制器【续】Action类的execute()方法