我无法理解为什么在这种情况下应用建议@After
而不是@AfterThrowing
:
@Pointcut("execution(* componentB.Bye.run())")
public void newThread(){
}
@After("newThread()")
public void cokolwiek2(JoinPoint joinPoint){
report(joinPoint);
}
@AfterThrowing(pointcut="newThread()",throwing="e")
public void itsAFoo(JoinPoint joinPoint, RemoteException e) {
logger.error(joinPoint.getSignature().toLongString() + " exception here!");
}
我确信会抛出异常:
public String greeting(String c) throws RemoteException,
InterruptedException {
throw new RemoteException();
//return "Good morning!";
}
但是没有exception here!
答案 0 :(得分:2)
切入点execution(* componentB.Bye.run())
未涵盖方法public String greeting(String c)
。
@After
和@AfterThrowing
之间的区别在于仅在发生异常时调用@AfterThrowing
,而在抛出异常或返回方法时调用@After
成功。因此,如果存在异常并且您同时拥有这两个建议,则它们都将被执行。