Posted on 2006-04-07 20:32
gong 阅读(521)
评论(1) 编辑 收藏 所属分类:
struts
DispatchAction 必须不写execute(... ...)方法, 否则反而有问题,
使用中我发现如果你写了exceute 方法 struts仍然首先调用改excute()方法, 这是即使你配置了 method 参数如
action="abcAction.do?method=load" 也无效, struts 仍然首先执行execute,
故DispatchAction中不要写execute( ... ...) 方法.