@AfterThrowing
Posted yingyigongzi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@AfterThrowing相关的知识,希望对你有一定的参考价值。
@AfterThrowing(throwing="ex", pointcut="within(com.xms.controller.*)")
public void four(Exception ex){
System.out.println("four");
ex.printStackTrace();//打印异常信息
StackTraceElement []elements=ex.getStackTrace();
//记录异常信息
System.out.println("-->"+elements[0].toString());
}
参考:https://blog.csdn.net/owen_william/article/details/50812780
以上是关于@AfterThrowing的主要内容,如果未能解决你的问题,请参考以下文章