Link 到 Java Spring 框架中的 Facebook 等外部网站

Link to a external website like Facebook in Java Spring framework

我是 Java Spring 框架的新手。我使用控制器设置 URL 以连接到其他页面,例如:

@RequestMapping(value = "loginMember")

但是,如果我想设置 link 连接到特定网站,如 www.facebook.com 怎么办?我该怎么办?

请帮助我,谢谢。

你可以用这个

 @RequestMapping(value = "/redirect", method = RequestMethod.GET)
public ModelAndView method() {
        return new RedirectView("redirect: the URL you want");

}