从@ExceptionHandler 重定向不起作用
Redirect from @ExceptionHandler doesn't work
我有这样的异常处理程序:
@ControllerAdvice
public classMyExceptionHandler extends ResponseEntityExceptionHandler {
@ExceptionHandler(MyRuntimeException.class)
public String handleMyRuntimeException(MyRuntimeExceptionexception ex){
LOGGER.info(ex.getMessage());
return "redirect:/www.google.com";
}
}
我执行 http 请求,我看到 Controller 处理我的请求,然后 MyRuntimeException
正在抛出并且 handleMyRuntimeException
方法正在调用。但在邮递员中,我看到服务器 returns 401 http 状态,但我没有看到 www.google.com 响应 headers。
我做错了什么?
首先,默认情况下 Postman 会自动跟随重定向。您在 Postman 中得到的是已经重定向到 /www.google.com
的响应。转到设置将其关闭:
其次,redirect:/www.google.com
不同于redirect://www.google.com
.假设您的服务器是 127.0.0.1:8080
:
redirect:/www.google.com
--> 重定向到
http://127.0.0.1:8080/www.google.com
redirect://www.google.com
--> 重定向到 http://www.google.com
所以你实际上重定向回你的服务器,你收到的 401 错误可能是由于你的服务器的访问控制。
就我而言,它工作正常,请检查:
@ControllerAdvice
public class ErrorHandler {
@ExceptionHandler(CustomRuntimeException.class)
@ResponseStatus(value=HttpStatus.OK)
public ModelAndView handleCustomRuntimeException(HttpServletRequest request, HttpServletResponse response, Exception ex) {
ModelAndView mav = new ModelAndView("error");
mav.addObject("error", "500");
return mav;
//return new ModelAndView("redirect:https://www.google.com");
}
}
我有这样的异常处理程序:
@ControllerAdvice
public classMyExceptionHandler extends ResponseEntityExceptionHandler {
@ExceptionHandler(MyRuntimeException.class)
public String handleMyRuntimeException(MyRuntimeExceptionexception ex){
LOGGER.info(ex.getMessage());
return "redirect:/www.google.com";
}
}
我执行 http 请求,我看到 Controller 处理我的请求,然后 MyRuntimeException
正在抛出并且 handleMyRuntimeException
方法正在调用。但在邮递员中,我看到服务器 returns 401 http 状态,但我没有看到 www.google.com 响应 headers。
我做错了什么?
首先,默认情况下 Postman 会自动跟随重定向。您在 Postman 中得到的是已经重定向到 /www.google.com
的响应。转到设置将其关闭:
其次,redirect:/www.google.com
不同于redirect://www.google.com
.假设您的服务器是 127.0.0.1:8080
:
redirect:/www.google.com
--> 重定向到http://127.0.0.1:8080/www.google.com
redirect://www.google.com
--> 重定向到http://www.google.com
所以你实际上重定向回你的服务器,你收到的 401 错误可能是由于你的服务器的访问控制。
就我而言,它工作正常,请检查:
@ControllerAdvice
public class ErrorHandler {
@ExceptionHandler(CustomRuntimeException.class)
@ResponseStatus(value=HttpStatus.OK)
public ModelAndView handleCustomRuntimeException(HttpServletRequest request, HttpServletResponse response, Exception ex) {
ModelAndView mav = new ModelAndView("error");
mav.addObject("error", "500");
return mav;
//return new ModelAndView("redirect:https://www.google.com");
}
}