`
chengjie177
  • 浏览: 25883 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
文章分类
社区版块
存档分类
最新评论

spring mvc 页面跳转

阅读更多
在spring mvc中实现在Controller中进行页面跳转有两种方式
1.
public ModelAndView login(HttpServletResponse response, String id) {
response.sendRedirect("index.do="+id);
return null;
}

2.
public ModelAndView login(HttpServletResponse response, String id) {

return new ModelAndView("redirect:index.do="+id);
}

 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics