码迷,mamicode.com
首页 > 其他好文 > 详细

@ExceptionHandler处理异常

时间:2020-05-03 14:46:03      阅读:47      评论:0      收藏:0      [点我收藏+]

标签:rac   turn   lan   on()   out   oid   system   new   hand   

@ExceptionHandler() 如果异常被try-catch就不会被接收, 抛出的checked exception 能被接收

@RestController
public class TestController2 {
    @RequestMapping("/test5")
    public String test5() {
        try {
            throw new RuntimeException();
        } catch (RuntimeException e) {
            System.out.println("异常被捕获");
            e.printStackTrace();
        }
        return "hello world";
    }

    @RequestMapping("/test6")
    public void test6() throws IOException {
        System.out.println("controller IOException throws");
        throw new IOException();
    }

    @RequestMapping("/test7")
    public void test7()  {
        try {
            throw new IOException();
        } catch (IOException e) {
            System.out.println("controller IOException try-catch");
            e.printStackTrace();
        }
    }
    /*
    @ExceptionHandler 能接收抛出的checked exception,但是如果异常被try-catch就不能被接收
     */
    @ExceptionHandler(IOException.class)
    public void catchIoException() {
        System.out.println("handler  IOException");
    }
    /*
    如果unchecked exception 被try-catch了就不能被@ExceptionHandler接收
     */
    @ExceptionHandler(RuntimeException.class)
    public void catchRuntimeException() {
        System.out.println("handler  RuntimeException");
    }
}

@ExceptionHandler处理异常

标签:rac   turn   lan   on()   out   oid   system   new   hand   

原文地址:https://www.cnblogs.com/kikochz/p/12821758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!