SpringMVC的学习13(关于springmvc三种异常处理机制的应用)

springmvc中是有默认的异常处理机制的,但是我们也可以自定义异常处理。
主要有:@ControllerAdvice@ResponseStatus@ExceptionHandler
1、三种处理机制的使用
@ControllerAdvice:异常处理全局配置
@ResponseStatus:可定义在方法上也可以定义在类上,一般定义在类上
@ExceptionHandler:定义于方法上
2、处理机制的优先级
每次在找异常处理时,先在本类中查找,然后再找全局配置
(1)优先级若在三种处理机制都定义的情况下,会优先找@ExceptionHandler,因为此注解定义与类中,而类中若定义多个@ExceptionHandler,会先找小范围再找大范围
(2)若没有@ExceptionHandler,会先找@ControllerAdvice,,同样未全局配置情况下,springmvc会先找@ControllerAdvice


代码部分
(1)@ExceptionHandler@ResponseStatus的类中应用

@Controller
public class ExceptionController {

    @RequestMapping("/exception1")
    public String exception(){
        System.out.println(this.getClass().getName());
        int i = 1/0;
        return "success";
    }

    /**
     * @ResponseStatus:可以标注在方法上,但是不推荐使用
     * 不给value时默认为500
     * @return
     */
    @ResponseStatus(value = HttpStatus.OK,reason = "错了就是错了")
    @RequestMapping("/exception2")
    public String exception2() {
        System.out.println(this.getClass().getName());
        return "success";
    }


    @RequestMapping("/exception3")
    public String exception3(String username) {
        System.out.println(this.getClass().getName());
        if(("admin").equals(username)){
            return "success";
        }else {
            throw new UsernameException();
        }
    }


    @ExceptionHandler(value = {ArithmeticException.class})
    public ModelAndView handlerException(Exception exception){
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.setViewName("error");      //设置报错跳转页面
        modelAndView.addObject("exce",exception);
        return modelAndView;
    }

    @ExceptionHandler(value = {NullPointerException.class,Exception.class})
    public ModelAndView handlerException2(Exception exception){
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.setViewName("error");      //设置报错跳转页面
        modelAndView.addObject("exce",exception);
        return modelAndView;
    }
}

(2)@ResponseStatus的全局配置

@ResponseStatus(reason = "出错了",value = HttpStatus.NOT_ACCEPTABLE)
public class UsernameException extends RuntimeException{
}

(3)@ControllerAdvice的应用

@ControllerAdvice
public class MyGlobalController {

    @ExceptionHandler(value = {ArithmeticException.class})
    public ModelAndView handlerException(Exception exception){
        ModelAndView modelAndView = new ModelAndView();
        System.out.println("global");
        modelAndView.setViewName("error");      //设置报错跳转页面
        modelAndView.addObject("exce",exception);
        return modelAndView;
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值