如果我们有如下字段,我们如何获取字段名称。
@XmlElement(required = true)
protected String code;
如果我尝试成为:
Field f = clazz.getDeclaredField(field);
XmlElement xmlElement = f.getAnnotation(XmlElement.class);
xmlElement.name() // returns as ##default instead of code.