Struts1.X DispatchAction学习心得

Struts1.X DispatchAction相关学习

目的:是避免Action膨胀使用过多,主要是为了减少Action的数量。

使用流程:
1.编写自己的Action类继承自DispatchAction,写入相应的业务逻辑方法。比如对于一个用户管理模块,可以有addUser(),delUser(),modifyUser()等方法。

2.配置struts-config.xml文件,关键参数在于<action/>标签的parameter参数,parameter参数指定调用以上Action类中相应的方法。

注意点:
1.parameter参数不能是execute或perform;
2.覆写DispatchAction类中的execute()方法时,需要显示地用super调用execute()不然自己编写的Action类将失效。
3.unspecified()方法中可以写入无parameter参数时的业务逻辑。

你可能感兴趣的:(xml,struts,配置管理)