<--!DispathAction和action区别(回钦波个人总结)-->
很多网友问我这个问题我今天再重新大概给大家总结下:
<action>的parameter属性是给DispatchAction使用的,你的类要继承DispatchAction类,而不是普通的Action,Action只会执行execute方法,DispatchAction会根据parameter的值执行特定的方法,注意parameter的值不要设置为execute,也不要覆盖DispatchAction中的execute(),因为DispatchAction继承于Action,它的execute会首先执行,在execute()方法中取出parameter的值,通过java反射调用指定的方法。
struct-config.xml 中 action的parameter属性设置成 "method”,这样jsp页面中的"login.do?method=loginCheck”就起作用了
更多关注:QQ:444084929
很多网友问我这个问题我今天再重新大概给大家总结下:
<action>的parameter属性是给DispatchAction使用的,你的类要继承DispatchAction类,而不是普通的Action,Action只会执行execute方法,DispatchAction会根据parameter的值执行特定的方法,注意parameter的值不要设置为execute,也不要覆盖DispatchAction中的execute(),因为DispatchAction继承于Action,它的execute会首先执行,在execute()方法中取出parameter的值,通过java反射调用指定的方法。
struct-config.xml 中 action的parameter属性设置成 "method”,这样jsp页面中的"login.do?method=loginCheck”就起作用了
更多关注:QQ:444084929