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

Tracing.aj 449B

12345678910111213141516
  1. public abstract aspect Tracing {
  2. before (Object obj) : execution(* *(..)) && this(obj) {
  3. System.out.println(thisJoinPoint);
  4. }
  5. // before (Object obj) : execution(* *(..)) && this(obj) {
  6. before () : execution(* *(..)) {
  7. System.out.println(thisJoinPointStaticPart);
  8. }
  9. // before (Object obj) : execution(* *(..)) && this(obj) {
  10. before () : execution(* *(..)) && this(Object) {
  11. System.out.println(thisEnclosingJoinPointStaticPart);
  12. }
  13. }