java redirect用法

重定向到其他链接,不做赘述,上代码。

@RequestMapping("forward")  
    public ModelAndView alipayforward(HttpServletRequest req, HttpServletResponse resp) throws Exception {  
        String url = "redirect:http://www.baidu.com/";   
        return new ModelAndView(url);  
    } 

 

在地址栏输入:

http://localhost:8080/test/forward

进入:

https://www.baidu.com/

posted @ 2017-03-21 16:17  半马  阅读(3786)  评论(0编辑  收藏  举报