1 2 3 4 5
public aspect TraceHello { before(): execution(* Hello.*(..)) { System.out.println("entering: " + thisJoinPoint); } }