1 2 3 4 5 6
aspect Aspect { before(): execution(* *.*(..)) && !within(Aspect) { System.out.println(thisJoinPointStaticPart); } }