1 2 3 4 5
public aspect MyAspect { before() : execution(*.new(..)) && !within(MyAspect) { System.out.println(thisJoinPoint); } }