在Groovy中内省的属性注释

Pav*_*vlo 3 groovy

有没有一种方便的方法来迭代Object的属性并检查每个属性的注释?

tim*_*tes 8

你可以这样做:

// First, declare your annotation
import java.lang.annotation.*

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface MyAnnot {
}

// Then, define your class with it's annotated Fields
class MyClass {
  @MyAnnot String fielda
  String fieldb
  @MyAnnot String fieldc
}

// Then, we will write a method to take an object and an annotation class
// And we will return all properties of the object that define that annotation
def findAllPropertiesForClassWithAnotation( obj, annotClass ) {
  obj.properties.findAll { prop ->
    obj.getClass().declaredFields.find { 
      it.name == prop.key && annotClass in it.declaredAnnotations*.annotationType()
    }
  }
}

// Then, define an instance of our class
MyClass a = new MyClass( fielda:'tim', fieldb:'yates', fieldc:'stackoverflow' )

// And print the results of calling our method
println findAllPropertiesForClassWithAnotation( a, MyAnnot )
Run Code Online (Sandbox Code Playgroud)

在这个例子中,打印出:

[fielda:tim, fieldc:stackoverflow]
Run Code Online (Sandbox Code Playgroud)

希望能帮助到你!