我的要求是我必须动态设置@XmlAttribute名称。
String nameValue="code";
@XmlAttribute(name = nameValue) //unable to set String Variable as name param
protected String value;
The value for annotation attribute XmlAttribute.name must be a constant expression
有没有办法动态发送@XmlAttribute名称参数。