1

クラスを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クラスにフィールドを追加することは実行可能ではありません。アノテーションを使用して、何らかの方法で追加したいと思います。

4

2 に答える 2

1

XML 表現

次の XML 表現をお勧めします。

<myXmlMappings>
    <xmlMapping name="username" type="String" defaultValue="hello" />
    <xmlMapping name="password" type="String" defaultValue="asdf" />
    <xmlMapping name="age" type="Integer" defaultValue="25" />
</myXmlMappings>

Java モデル

次の Java モデルを使用します。

XmlMappings

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class MyXmlMappings  {
    @XmlElement(name="xmlMapping")
    protected List<XmlMapping> xmlMappings;

}

XmlMapping

@XmlAccessorType(XmlAccessType.FIELD)
public class XmlMapping {
    @XmlAttribute
    protected String name;
    @XmlAttribute
    protected String type;
    @XmlAttribute
    protected String defaultValue;
}
于 2012-08-01T15:44:39.673 に答える
1

これを試して:


public class MyXmlMappings {

    @XmlPath("username/@type")
    protected String userType;
    @XmlPath("password/@type")
    protected String passwordType;
    @XmlPath("age/@type")
    protected String ageType;
    @XmlPath("username/@defaultValue")
    protected String userDefaultValue;
    @XmlPath("password/@defaultValue")
    protected String passwordDefaultValue;
    @XmlPath("age/@defaultValue")
    protected Integer ageDefaultValue;
    @XmlElement
    protected String username;
    @XmlElement
    protected String password;
    @XmlElement
    protected Integer age;
}
于 2012-08-01T15:45:52.807 に答える