我在看一段源代码,其中的一个action里面用到了注解:
@Results({ @Result(name = "memberCenterIndexAction", location = "member_center!index.action", type = "redirect"),
其中 location = "member_center!index.action
member_center表示跳转到为member_center的ftl模板页面,但是!index.action 表示的什么意思呢?不懂求教~~~~谢谢
Struts2的动态方法调用机制。
ActionName!method.action
ActionName: Action名
method: Action中的方法
表示调用Action类里面的index这个方法,而不是原先约定的execute