SpringMVC 重定向到其他系统的页面的两种方式

//测试重定向到另外的一个系统
@RequestMapping("/tttt")
public void testRed(HttpServletResponse response) throws Exception{
System.out.println("tttt");
response.sendRedirect("https://www.baidu.com");
}

@RequestMapping("/ssss")
public String testRedSSS(HttpServletResponse response) throws Exception{
System.out.println("ssss");
return "redirect:http://www.qq.com";
}

posted @ 2016-07-27 23:16  brucegan  阅读(23642)  评论(1编辑  收藏  举报