SpringBoot异常重定向/error问题

SpringBoot 编写了全局异常处理器以后 发送请求报错

    //其他异常
    @ExceptionHandler(RuntimeException.class)
    public R handlerThrowable(RuntimeException e){
        log.error(e.getMessage(),e);
        return R.error(e.getMessage());
    }

但是注意,这里捕获的是RuntimeException,如果程序里抛出的是Exception,那就完蛋了,此时SpringMVC就找不到合适的异常处理方法了,只能是自己接管处理,此时springmvc会请求转发到/error,这个error路径有可能会被我们写的拦截器给拦截到,进而造成一些其他异常。

你可能感兴趣的:(web,spring,boot,java,spring)