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

12345678910111213141516
  1. public aspect MyAspect {
  2. // this throws an exception
  3. before(MyAnnotation myAnnotation) :
  4. //call(* *..*.*(..)) &&
  5. call(@MyAnnotation * *(..)) &&
  6. @annotation(myAnnotation) {
  7. }
  8. // this, however, works fine
  9. // before() :
  10. // call(@MyAnnotation * *(..)) {
  11. //
  12. // }
  13. }