0

我在 getter 上有几个注释,如下所示。我想跳过基于同一类中的布尔值的 getter 上的所有注释调用。有什么办法吗?

@MyAnnotation1(message = "{someMessage1}")
@MyAnnotation2(message = "{someMessage2}")
public Date getFromDate() {
    return fromDate;
}
4

1 回答 1

0

@Ignore如果设置了带注释的字段,您可以在该字段上定义另一个注释,您可以简单地忽略您的注释处理。

   @Ignore
   private boolean value;

您可以将自己的注释定义为

   @Target(ElementType.FIELD)
   @Retention(RetentionPolicy.RUNTIME)
   /**
    * This Annotation should be used on boolean field to set specify whether annotation processing should be        ignored for that class
    */
   public @interface Ignore {

   }

请记住,这是自定义注释,因此您需要编写代码来处理它

PS 注意:假设您正在编写自定义注释。并有加工。

于 2012-10-02T19:06:01.610 回答