Struts-config.xml:
DispatchAction” name=”subscriptionForm” scope=”request” input=”/subscription.jsp” parameter=”method”/>
的parameter属性是给DispatchAction使用的,你的类要继承DispatchAction类,而不是普通的Action,Action只会执行execute方法,DispatchAction会根据parameter的值执行特定的方法,注意
parameter的值不要设置为execute,也不要覆盖DispatchAction中的execute(),因为DispatchAction继
承于Action,它的execute会首先执行,在execute()方法中取出parameter的值,通过java反射调用指定的方法
阅读(1706) | 评论(0) | 转发(1) |