LogAnnotation.java 369 B

12345678910111213141516
  1. package com.huaxu.logAdvice;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. /**
  7. * 日志注解
  8. *
  9. */
  10. @Target({ ElementType.TYPE,ElementType.METHOD })
  11. @Retention(RetentionPolicy.RUNTIME)
  12. public @interface LogAnnotation {
  13. String module() default "";
  14. }