标签:mod bsp 重定向 height www style com mode throws
spring mvc重定向有三种方法。
1.return new ModelAndView("redirect:/toUrl"); 其中/toUrlt是你要重定向的url.
2.return "redirect:/toUrl";
@RequestMapping("/ssss") public String testRedSSS(HttpServletResponse response) throws Exception{ System.out.println("ssss"); return "redirect:http://www.qq.com"; }
3.用response.sendRedirect()方法。
public void testRed(HttpServletResponse response) throws Exception{ response.sendRedirect("https://www.baidu.com"); }
注意,如果要跳转到别的项目,如上所示,要写完整的地址,加上http。
标签:mod bsp 重定向 height www style com mode throws
原文地址:https://www.cnblogs.com/roy-blog/p/9200578.html