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

 

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2022-01-09
猜你喜欢
  • 2021-11-04
  • 2021-11-21
相关资源
相似解决方案