struts 1 自己action继承的父action的execute方法为什么执行
是这样的结构
MyAction extends baseAction
baseAction extends DispatchActionSupport
baseAction中有execute方法,myAction中也有具体执行的方法。
MyAction中的execute方法不是覆盖override的baseAction的execute方法?覆盖了为什么还执行baseAction的execute方法?
还有执行myAction 和baseAction中execute方法的顺序是怎么样的?