WithoutStackTrace.java 449 B

123456789101112131415161718192021
  1. package cn.com.qmth.mps.support;
  2. import java.lang.annotation.Documented;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. /**
  8. * 接口注解 <br>
  9. * 忽略接口日志堆栈<br>
  10. *
  11. */
  12. @Target(ElementType.METHOD)
  13. @Retention(RetentionPolicy.RUNTIME)
  14. @Documented
  15. public @interface WithoutStackTrace {
  16. boolean value() default true;
  17. }