欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Struts-DispatchAction

程序员文章站 2022-05-12 16:29:45
...

基本用法

1.定义一个类继承DispatchAction( org.apache.struts.actions.DispatchAction),不需要复写DispatchAction的execute的方法,因为它里面已经实现了对请求的处理进行了转发(当然你也可以自己在execute方法里实现请求的转发处理,如果这样完全没必要用DispatchAction).
2.必须在struct的配置文件里该action所对应的配置里有一个名为parameter的参数(parameter的值不能为execute或perform),该参数的值代表请求多需要传过来的一个参数名为改值的一个参数,且传过来的该参数的值代表需要调用的该action里对应的方法名(该方法是通过反射调用)
3.该类里需要用来处理对应请求的方法,该方法的参数与execute的方法参数一样
4.如果有必要返回相应的ActionForward对象

结合源码进一步的确定

Struts-DispatchAction

Struts-DispatchAction

Struts-DispatchAction

Struts-DispatchAction

Struts-DispatchAction

Struts-DispatchAction

Struts-DispatchAction

Struts-DispatchAction

Struts-DispatchAction

              该博客为原创,如有有不对之处还望大家积极指正,及时更改,如需转发请标明转发处
相关标签: struct dispatch