SpringMVC_异常

一、异常

1、异常处理

  • SpringMVC 通过 HandlerExceptionResolver 处理程序的异常,包括 Handler 映射、数据绑定以及目标方法执行时发生的异常。
  • SpringMVC 提供的 HandlerExceptionResolver 的实现类

2、HandlerExceptionResolver 

         2)使用了 <mvc:annotation-driven/>配置:

  • DispatcherServlet 默认装配的 HandlerExceptionResolver:
    1)没有使用 <mvc:annotation-driven/> 配置:

       2)使用了 <mvc:annotation-driven/> 配置:

           

3、ExceptionHandlerExceptionResolver

  •  主要处理Handler中用 @ExceptionHandler 注解定义的方法。
  • @ExceptionHandler 注解定义方法的优先级问题:例如发生的是NullPointerException,但是声明的异常有 RuntimeException 和 Exception,此时会根据异常最近的继承关系找到继承深度最浅的那个 @ExceptionHandler 注解方法,即标记了RuntimeException的方法。
     @RequestMapping(value = "/testExceptionHandlerExceptionResolver")
        public String testExceptionHandlerExceptionResolver(@RequestParam("i") int i){
            System.out.println("result:"+(10/i));
            return "success";
        }
    
        /**
         * 1、在 @ExceptionHandler 方法的入参中可以加入 Exception 类型的参数,该参数即对应发生的异常对象
         * 2、 @ExceptionHandler 方法的入参中不能传入Map ,若希望把异常信息传到页面上,需要使用 ModelAndView作为返回值
         * 3、@ExceptionHandler  方法标记的异常有优先级的问题
         * 4、@ControllerAdvice 如果在当前 Handler中找不到 @ ExceptionHandler 方法来处理当前方法的异常,将去
         *   @ControllerAdvice标记的类中查找来处理异常
         * @param ex
         * @return
         */
        @ExceptionHandler({ArithmeticException.class})
        public ModelAndView handlerArithmeticExceprion(Exception ex){
            System.out.println("出异常了:"+ex);
            ModelAndView mv = new ModelAndView("error");
            mv.addObject("ex",ex);
            return mv;
        }

     

  • @ExceptionHandlerMethodResolver 内部若找不到 @ExceptionHandler 注解的话,会找 @ControllerAdvice 中的 @ExceptionHandler 注解方法。
    @ControllerAdvice
    public class Exception {
        @ExceptionHandler({ArithmeticException.class})
        public ModelAndView handlerArithmeticExceprion(java.lang.Exception ex){
            System.out.println("出异常了!!!:"+ex);
            ModelAndView mv = new ModelAndView("error");
            mv.addObject("ex",ex);
            return mv;
        }
    }
    

     

4、ResponseStatusExceptionResolver

  • 在异常及父类异常中找到 @ResponseStatus 注解,然后使用这个注解的属性进行处理。
  • 定义一个 @ResponseStatus 注解修饰的异常类
  • 若在处理器方法上抛出了上述异常:
    若 ExceptionHandlerExceptionResolver 不解析上述异常。由于触发的异常 UnauthorizedException 带有 @ResponseStatus注解。因此会被 ResponseStatusExceptionResolver解析到。最后影响 HttpStatus.UNAUTHORIZED代码给客户端。HttpStatus.UNAUTHORIZED代表响应码401,无权限。关于其他的响应码参考 HttpStatus枚举类型源码。

@ResponseStatus(value = HttpStatus.FORBIDDEN,reason = "不匹配")
public class NotMatchException extends RuntimeException {

}
@RequestMapping(value = "/responseStatusExceptionResolver")
    public String responseStatusExceptionResolver(@RequestParam("i") int i){
        if (i==13){
            throw new NotMatchException();
        }
        System.out.println("responseStatusExceptionResolver");
        return "success";
    }

5、DefaultHandlerExceptionResolver

对一些特殊的异常进行处理,比如NoSuchRequestHandlingMethodException、HttpRequestMethodNotSupportedException、HttpMediaTypeNotSupportedException、HttpMediaTypeNotAcceptableException等。
 

6、SimpleMappingExceptionResolver

如果希望对所有的异常进行统一的处理,可以使用SimpleMappingExceptionResolver,它将异常类名映射为视图名,即发生异常时使用对应的视图报告。

 @RequestMapping(value = "SimpleMappingExceptionResolver")
    public String SimpleMappingExceptionResolver(@RequestParam("i") int i){
        String[] vals = new String [10];
        System.out.println(vals[i]);
        return "success";
    }
  <!--配置使用SimpleMappingExceptionResolver来映射异常-->
    <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
        <property name="exceptionAttribute" value="ex"/><!--指定前端页面用“ex”接收异常-->
        <property name="exceptionMappings">
            <props><!--发生异常指定跳转到哪个页面-->
                <prop key="java.lang.ArrayIndexOutOfBoundsException">error</prop>
            </props>
        </property>
    </bean>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值