123456789101112131415161718192021 |
- package cn.com.qmth.mps.support;
- import java.lang.annotation.Documented;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * 接口注解 <br>
- * 忽略接口日志堆栈<br>
- *
- */
- @Target(ElementType.METHOD)
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface WithoutStackTrace {
- boolean value() default true;
- }
|