首页 > Java > java教程 > 正文

如何从 Spring MVC 控制器操作重定向到外部 URL?

Patricia Arquette
发布: 2024-11-12 00:04:02
原创
960 人浏览过

How to Redirect to External URLs from Spring MVC Controller Actions?

从 Spring MVC 控制器操作重定向到外部 URL

在 Spring MVC 中,使用redirect: 前缀重定向到项目内的 URL 非常简单。但是,重定向到外部 URL 可能会很棘手,尤其是在 URL 未指定有效协议的情况下。

考虑以下代码,它将重定向到项目内的 URL:

@RequestMapping(method = RequestMethod.POST)
public String processForm(HttpServletRequest request, LoginForm loginForm, 
                          BindingResult result, ModelMap model) 
{
    String redirectUrl = "yahoo.com";
    return "redirect:" + redirectUrl;
}
登录后复制

此代码不会重定向到预期的外部 URL,而是重定向到具有给定名称的视图。要重定向到外部 URL,必须在 URL 中包含协议,如下所示:

@RequestMapping(method = RequestMethod.POST)
public String processForm(HttpServletRequest request, LoginForm loginForm, 
                              BindingResult result, ModelMap model) 
{
    String redirectUrl = "http://www.yahoo.com";
    return "redirect:" + redirectUrl;
}
登录后复制

但是,此方法需要存在有效的协议。要处理没有有效协议的 URL,可以使用两种方法:

方法 1:

@RequestMapping(value = "/redirect", method = RequestMethod.GET)
public void method(HttpServletResponse httpServletResponse) {
    httpServletResponse.setHeader("Location", projectUrl);
    httpServletResponse.setStatus(302);
}
登录后复制

在此方法中,使用 HttpServletResponse 对象来设置位置标头和状态代码,强制重定向。

方法 2:

@RequestMapping(value = "/redirect", method = RequestMethod.GET)
public ModelAndView method() {
    return new ModelAndView("redirect:" + projectUrl);
}
登录后复制

此方法使用 ModelAndView 重定向到给定的 URL。

以上是如何从 Spring MVC 控制器操作重定向到外部 URL?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板