從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中文網其他相關文章!