1 2 3 4 5
public aspect TestAdvice { before () : execution(public new()) && within(!TestAdvice) { System.out.println("? " + thisJoinPoint.getSignature()); } }