0
我已經定義了兩個AfterThrowing通知來處理具有相同切入點的異常。處理特定的異常類型
@AfterThrowing(pointcut="...", throwing="ex")
public void method1(Exception ex) {}
@AfterThrowing(pointcut="...", throwing="ex")
public void method2(GatewayException ex) {}
如果異常是一個GatewayException,我有辦法阻止泛型方法1被執行嗎?
任何想法不勝感激
Ç
是的,我希望避免instanceof,但我認爲你是對的。 – Cathal