@ExceptionHandler处理异常
Posted kikochz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@ExceptionHandler处理异常相关的知识,希望对你有一定的参考价值。
@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处理异常的主要内容,如果未能解决你的问题,请参考以下文章
Spring的@ExceptionHandler和@ControllerAdvice统一处理异常