您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }