从@ExceptionHandler重定向不起作用

时间:2019-01-29 09:53:47

标签: java spring spring-mvc redirect exception-handling

我有这样的异常处理程序:

@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方法。但在邮递员中,我看到服务器返回401 http状态,并且在响应标头中没有看到www.google.com。

我怎么了?

2 个答案:

答案 0 :(得分:1)

首先,默认情况下,邮递员将自动遵循重定向。您在邮递员中得到的是已经重定向到/www.google.com的响应。转到设置将其关闭:

enter image description here

第二,redirect:/www.google.comredirect://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错误可能是由于服务器的访问控制所致。

答案 1 :(得分:0)

就我而言,它工作正常,请检查:

@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");
    }
}