gpt4 book ai didi

java - 如何在 AspectJ 的 AfterThrowing 吞下异常

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:42:38 24 4
gpt4 key购买 nike

在 AspectJ 中,我想吞下一个异常。

@Aspect
public class TestAspect {

@Pointcut("execution(public * *Throwable(..))")
void throwableMethod() {}

@AfterThrowing(pointcut = "throwableMethod()", throwing = "e")
public void swallowThrowable(Throwable e) throws Exception {
logger.debug(e.toString());
}
}

public class TestClass {

public void testThrowable() {
throw new Exception();
}
}

以上,它没有吞下异常。 testThrowable() 的调用者仍然收到异常。我希望来电者不要收到异常。怎么能做到这一点?谢谢。

最佳答案

我认为在AfterThrowing 中是做不到的。您需要使用 Around

关于java - 如何在 AspectJ 的 AfterThrowing 吞下异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4396167/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com