//重定向到其他网站或其他服务器
//通过new ModelAndView对象添加http://xxxx/xxxx即可跳转到第3方网站
@GetMapping(value = "test")
public ModelAndView test(CurrentUser user, HttpServletRequest request){
//第一种写法,返回参数要用String对象
//return ”redirect:https://www.baidu.com“
//第二种写法
return new ModelAndView("redirect:https://www.baidu.com");
}
//重定向到自己服务器上,去掉http://的方式,采用redirect:/xxxxx/xxxxx
@GetMapping(value = "test")
public ModelAndView test(CurrentUser user, HttpServletRequest request){
//第一种写法,返回参数要用String对象
//return ”redirect/www.baidu.com“
//第二种写法
return new ModelAndView("redirect:/www.baidu.com");
}
重定向到第3方去

重定向到自己服务器上(因为我自己的服务器上没有这个路径所以会访问出现404)

本文介绍了在SpringMVC框架中实现重定向的方法,包括如何将请求重定向到第三方网站和自身服务器上的不同路径,提供了具体代码示例,有助于开发者理解和掌握SpringMVC的重定向机制。
1876

被折叠的 条评论
为什么被折叠?



