DispatchAction的用法

1、编写Action,继承自DispatchAction

将execute方法改为其他名字

2.struts-config.xml中的<action标签中加入一个请求参数parameter="名字aaa"

3.jsp页面中增加一个隐藏域,里面也有一个请求参数:

<html:form  action="...">

    <input type="hidden"  name="名字aaa"  value="action中的某个方法名"

</html:form>


错误写法:url?opType="findAll"

正确写法:url?opType=findAll

你可能感兴趣的:(DispatchAction的用法)