@Action(value = "/index/home")return "home";
没有配置result,这种写法为什么会能跳转到/index/home页面,原理是什么?如果需要配置,需要怎样的配置?
2 回答
冉冉说
TA贡献1877条经验 获得超1个赞
1.这种是struts2的新方式,通过注解的方式去映射action和URL之间的关系。struts2-convention-plugin 这个包就是起这个作用的。
2.如果用配置的方式:
<action name="actionname" class="xxxx.Action" method="method"> <result name="resultname">/xxx.jsp</result> </action>
添加回答
举报
0/150
提交
取消