ActionForm(validate,reset)

validate()方法的语法结构:

public ActionErrors validate(ActionMapping mapping,HttpServletRequest request)

参数和返回值说明:

mapping:封装了struts-config.xml文件中与该Action类相关的配置信息。

request:当前处理的请求对象,与Servlet中的request用法一致。

ActionErrors:保存错误信息的集合对象。

 

 

reset()方法语法结构:

public void reset(ActionMapping mapping,HttpServletRequest request)

参数说明:

mapping:封装了struts-config.xml文件中与该Action类相关的配置信息。

request:当前处理的请求对象,与Servlet中的request用法一致。

 

你可能感兴趣的:(xml,struts,servlet)