0


try/catch捕获不到的异常

try/catch捕获不到的异常

Throwable可以看做是异常世界中的Object,在Java中所有异常都有一个共同的祖先:Throwable,

在这里插入图片描述

Throwable有两个重要的子类:Error错误和Exception异常,二者都是异常处理重点类。

在这里插入图片描述

我们看一下普通的try/catch,

packagecom.example.duohoob.test;publicclassExceptionTest{publicstaticvoidmain(String[] args){try{System.out.println(1/0);}catch(Exception e){// TODO Auto-generated catch block// e.printStackTrace();System.out.println("捕获异常,"+ e.getMessage());}}}

在这里插入图片描述

接下来这种情况可能会有点特殊,

捕获不到的异常

packagecom.example.duohoob.test;publicclassExceptionTest{publicstaticvoidmain(String[] args){try{thrownewUnknownError();}catch(Exception e){// TODO Auto-generated catch block// e.printStackTrace();System.out.println("捕获异常,"+ e.getMessage());}}}

在这里插入图片描述

可以看到catch块中的代码并没有执行,因为我们catch的是Exception,而UnknownError不在其中,
try/catch没有捕获到异常,可能是因为抛出的异常大于我们catch ()中的异常类型。

这种情况finally块会执行吗?

先说结论finally块一定会执行,无论异常是否发生、catch块是否捕获到异常,finally块始终会执行,在return之前。

packagecom.example.duohoob.test;publicclassExceptionTest{publicstaticvoidmain(String[] args){try{thrownewUnknownError();}catch(Exception e){// TODO Auto-generated catch block// e.printStackTrace();System.out.println("捕获异常,"+ e.getMessage());}finally{System.out.println("finally-执行");}}}

在这里插入图片描述

可以看到catch块并没有捕获到异常,finally块还是执行了,
最后在将要return的时候程序才最终抛出了UnknownError。

spring中的@Transactional事务还会会滚吗?

发生了这种异常,spring中@Transactional事务还会会滚吗?
事务不会回滚,
@Transactional事务如果不做特殊处理不会回滚
@Transactional默认回滚运行时异常,可以这样@Transactional(rollbackFor = Throwable.class)。

该如何捕获这种异常?

只需要将catch ()中的Exception换做Throwable,catch (Throwable e),

packagecom.example.duohoob.test;publicclassExceptionTest{publicstaticvoidmain(String[] args){try{thrownewUnknownError();}catch(Throwable e){// TODO Auto-generated catch block// e.printStackTrace();System.out.println("捕获异常,"+ e.getMessage());}finally{System.out.println("finally-执行");}}}
标签: java spring servlet

本文转载自: https://blog.csdn.net/qq_35549286/article/details/128489196
版权归原作者 CaptainCats 所有, 如有侵权,请联系我们删除。

“try/catch捕获不到的异常”的评论:

还没有评论