1 2 3 4 5 6 7 8
package test; public aspect TestAspect { Object around(): call(* Test.*(..)) { System.out.println("Around " + thisJoinPoint.toString()); return proceed(); } }