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。