要使用DispatchAction就是继承该类。
我使用的版本号为: * @version $Rev: 471754 $ $Date: 2006-11-06 08:55:09 -0600 (Mon, 06 Nov 2006) $
在267和269行有这两句:
Object[] args = { mapping, form, request, response };
forward = (ActionForward) method.invoke(this, args);
再看一下这个method是怎么来的
protected Method getMethod(String name)
throws NoSuchMethodException {
synchronized (methods) {
Method method = (Method) methods.get(name);
if (method == null) {
method = clazz.getMethod(name, types);
methods.put(name, method);
}
return (method);
}
}
放射到这里就完事了。为了叙述的完整性,我们再来看看name是怎么来的:
设计很简单:
1.在Struts-config.xml文件里为每一个要使用DispatchAction功能的Action配置的时候多加了一个参数Parameter;
2.从配置文件里得到Parameter的值(一般我们取名method)之后,根据这个值取得jsp传过来的要执行的方法名。见代码318行
String parameter = mapping.getParameter();
374行:
request.getParameter(parameter);
这样就取得了要执行的方法名称了。
接下来的就是开头说的,通过放射执行方法咯。