Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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