1 2 3 4 5 6 7 8 9 10
aspect CacheMethodResultAspect perthis(cache()) { pointcut cache() : execution(@CacheMethodResult * *.*(..)); Object around() : cache() { System.out.println("around: "+thisJoinPointStaticPart.getSignature()); return proceed(); } }