struts1 中 DispatchAction 繼承 execute 執行順序
Posted on February 16th, 2017
地雷時間: 8小時(一個工作天) :(((
假設
StoreManageBaseAction extends DispatchAction
又
StoreManageIndexAction extends StoreManageBaseAction
當 execute 被執行時,
會優先執行父類別的 execute(), 才執行子類別指定的 method
例如:
要執行 StoreManageIndexAction.index(),
會先執行完 StoreManageBaseAction.execute() 才執行 StoreManageIndexAction.index()