struts转发和重定向action

1。转发(服务器端跳转)

  <action name="rederTo">
<result type="chain">hello</result>
</action>
<action name="hello">
<result>/WEB-INF/page/hello.jsp</result>
</action>
访问路径为:http://localhost:8080/mystruts2/s/rederTo.action 2。重定向(客户端跳转) <action name="rederTo">
<result type="redirectAction">
<param name="actionName">hello</param>
</result>
</action>
<action name="hello">
<result>/WEB-INF/page/hello.jsp</result>
</action>
访问路径为:http://localhost:8080/mystruts2/s/rederTo.action
上一篇:NoSQL数据库介绍


下一篇:NopCommerce架构分析之八------多语言