1 2 3 4 5
public aspect BeforeExec { before() : execution(* getName()) { System.out.println("Before execution"); } }