试图将我的类映射到 xml 并添加自定义属性。
public class MyXmlMappings {
@XmlElement
protected String username;
@XmlElement
protected String password;
@XmlElement
protected Integer age;
}
编组到 xml 后看起来像这样:
<myXmlMappings>
<username/>
<password/>
<age/>
</myXmlMappings>
我需要这样的xml:
<myXmlMappings>
<username type="String" defaultValue="hello" />
<password type="String" defaultValue="asdf" />
<age type="Integer" defaultValue="25" />
</myXmlMappings>
如您所见,我添加了 type 和 defaultValue 属性。如何将它们添加到 myXmlMappings 类以在编组后可见?
向 myXmlMappings 类添加额外的字段是不可行的,我想以某种方式使用注释来做到这一点。