如何在彈簧控制器類中編寫代碼時在新窗口或選項卡中打開URL。 下面是代碼:在新窗口中打開鏈接或標籤
@RequestMapping(value = "/showPage", method = RequestMethod.GET)
public ModelAndView openDataLink(HttpServletRequest request, HttpServletResponse response, BindException errors) throws Exception {
//logic to get or construct the URL
return new ModelAndView(new RedirectView("http://www.google.com"));
}
從我的應用程序時,我訪問位指示,google.com是越來越在同一窗口中從那裏我'訪問應用程序打開。如何在訪問控制器窗體的應用程序時使Google.com在新窗口或選項卡中打開。請建議。
相關:http://forum.spring.io/forum/spring-projects/web/49351-redirectview-can-i-have-this-redirect-to-a-new-window – Brian 2014-10-16 20:01:38