1 2 3 4 5
public aspect MyAspect { before() : execution(* Application.*(..)) { System.out.println(this.getClass().getName() + " -> " + thisJoinPointStaticPart); } }