码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC中Controller跳转到另一个Controller方法

时间:2014-05-11 18:14:36      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:style   c   string   a   cti   line   

1、直接Redirect后加 Controller/Action

Response.Redirect("/User/Edit");

return Redirect("/User/Edit");  

return RedirectToAction("about","Home");

Response.Redirect("/User/Edit");     

2、直接return后加 Controller/Action

return Redirect("/User/Edit");             

3、RedirectToAction方法,直接跳到一个action

return RedirectToAction("edit");

4、跳转的页并不在该Controller中  

return RedirectToAction("about","Home"); 

5. redirect跳转

String url = "redirect:/test.do";

ModelAndView mav = new ModelAndView(url);

SpringMVC中Controller跳转到另一个Controller方法,布布扣,bubuko.com

SpringMVC中Controller跳转到另一个Controller方法

标签:style   c   string   a   cti   line   

原文地址:http://www.cnblogs.com/michaelShao/p/3721835.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!