使用空catch块在Spring AOP中记录异常详细信息。 例如:
try {
int data = 50 / 0;
} catch (Exception e) {
}
异常不在spring aop中打印堆栈跟踪以获取空捕获方法
我正在使用“@AfterThrowing”,但它不起作用。请找到以下代码:
@AfterThrowing(pointcut =“catsServiceLevelLog()”,throw =“ex”)
public void exceptionAdvice(Throwable ex)抛出Throwable {
}