如何在Spring AOP中尝试使用空的catch块来记录异常细节?

在Spring AOP中用空的catch块记录异常细节。 例如:

  try {
        int data = 50 / 0;

    } catch (Exception e) {

    }

异常情况下不在春天的aop上打印堆栈跟踪以查找空捕获方法

我正在使用“@AfterThrowing”,但它不起作用。 请找到下面的代码:

@AfterThrowing(pointcut =“catsServiceLevelLog()”,throwing =“ex”)

public void exceptionAdvice(Throwable ex)throws Throwable {

}

链接地址: http://www.djcxy.com/p/77257.html

上一篇: How to log exception details in Spring AOP with try with empty catch block?

下一篇: @AspectJ Class level Annotation Advice with Annotation as method argument