我可以从创建的自己的注释中访问类变量

时间:2015-11-19 17:43:33

标签: java annotations

如何从Java语言中的自定义注释中访问类变量?有可能吗?

@MyAnno
public class MyClass() {
    String name;
    String surname;
    ....
} 

public @interface MyAnno{
 // I want to access MyClass and get the class variable etc name, surname.
}

1 个答案:

答案 0 :(得分:1)

您无法使用普通java获取带注释的类。您必须使用org.reflectionsannotation indexer等工具来获取所有带注释的<input type="text" name="textInput" data-ng-model="field.data" class="form-control" required/> <span ng-show="form.textInput.$dirty && form.textInput.$error.required">Required!</span> es的列表。