You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CacheMethodResultAspect.java 248B

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