我在控制器中有返回ResponseEntity Object的方法
@RequestMapping(method = RequestMethod.GET)
public ResponseEntity<Object> processInsert(HttpServletRequest request) {
return insertService.handleInsert(request);
}
public ResponseEntity<Object> handleInsert(HttpServletRequest request) {
Map<String, String[]> params = request.getParameterMap();
User user = createUser(params, request);
return new ResponseEntity<Object>(user, HttpStatus.OK);
}
现在执行此操作时,它会在浏览器中返回JSON,如何让它将我重定向到某个URL,例如www.google.com如果我需要保持此方法返回ResponseEntity对象
答案 0 :(得分:0)
我认为我不完全理解你的问题,如果你想要返回ResponseEntity然后重定向到另一个页面,这个信息将在重定向后丢失。 如果希望将端点重定向到另一个页面,则需要从控制器方法返回String类型,如下所示:
@RequestMapping(path = { "/testRedirect" }, method = { RequestMethod.GET})
public String testRedirect() {
return "redirect:http://www.google.com";
}
如果您想显示错误或某些内容以防您的程序因输入数据不正确或其他任何内容而出现异常,您可以执行以下操作:
@RequestMapping(path = { "/testRedirect" }, method = { RequestMethod.GET})
public String testRedirect(HttpServletResponse servletResponse) {
// if error occurs
servletResponse.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
"explained error");
return null; // return null to indicate your program that the request has finished with the error.
// if all works correctly return the redirect String.
return "redirect:http://www.google.com";
}