0

我正在使用以下配置让控制器重定向到外部 url。

我的应用程序基础 url 是http://www.testcebs.com:8080/SpringSecDemo11/

@RequestMapping(value = "/tryIt", method = RequestMethod.GET)
public String goToGoogle() {
    String redirectUrl = "www.google.com";
     return "redirect:" + redirectUrl;
}

在调用“/tryIt”网址时,它显示 404。并且网址转到

http://www.testcebs.com:8080/SpringSecDemo11/www.google.com

请提出任何摆脱它的方法。

问候, 普拉纳夫

4

1 回答 1

1

使用协议为您的 url 字符串添加前缀,即http://www.google.com.

final String redirectUrl = "redirect:http://www.google.com";
return redirectUrl;
于 2013-08-01T16:11:05.770 回答