我知道的唯一解决方案是获取所有类并检查它们是否具有特定的批注。
for (Class clazz : classes){
clazz.isAnnotationPresent(SomeAnnotation.class);
}
我想使用这样的东西:
List<Class> classesUsingAnnotation = SomeApi.getAllTargetTypeForAnnotation(SomeAnnotation.class)
是否有用于此的API?