Да, есть хорошая библиотека .
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.11</version>
</dependency>
И в своем коде используйте отражения, как показано ниже:
//CustomAnnotation.java
package com.test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
public @interface CustomAnnotation {
String name() default "";
}
и потреблять как:
Reflections reflections = new Reflections("com.test", new FieldAnnotationsScanner());
Set<Field> fields = reflections.getFieldsAnnotatedWith(CustomAnnotation.class);
for(Field field : fields){
CustomAnnotation ann = field.getAnnotation(CustomAnnotation.class);
System.out.println(ann.name());
}