1

以下に示すように、外部マッピングを使用して「タイプ」プロパティを非一時的にオーバーライドできないのはなぜですか? シリアル化すると、「タイプ」要素が表示されません。

public class PhoneNumber
{
    private String type;

    @XmlTransient
    public String getType()
    {
        return type;
    }

    //other properties
}

これが注釈よりも優先されることを期待して、「xml-attribute」を使用して「type」を指定しましたが、機能しません。

<java-type name="PhoneNumber">
         <java-attributes>
            <xml-attribute java-attribute="type" />
            <xml-value java-attribute="number" />
         </java-attributes>
</java-type>
4

1 に答える 1

1

バグに遭遇したようです。以下のリンクを使用して、この問題の進行状況を追跡できます。

回避策

クラスにフィールド アクセスを使用するように指定できますPhoneNumber

    <java-type name="PhoneNumber" xml-accessor-type="FIELD">
        <java-attributes>
            <xml-attribute java-attribute="type" />
            <xml-value java-attribute="number"/>
        </java-attributes>
    </java-type>

完全な例

電話番号

package forum11991936;

import javax.xml.bind.annotation.XmlTransient;

public class PhoneNumber {
    private String type;
    private String number;

    @XmlTransient
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getNumber() {
        return number;
    }
    public void setNumber(String number) {
        this.number = number;
    }

}

oxm.xml

<?xml version="1.0" encoding="UTF-8"?>
<xml-bindings xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
    package-name="forum11991936">
    <java-types>
        <java-type name="PhoneNumber" xml-accessor-type="FIELD">
            <xml-root-element name="phone-number"/>
            <java-attributes>
                <xml-attribute java-attribute="type" />
                <xml-value java-attribute="number"/>
            </java-attributes>
        </java-type>
    </java-types>
</xml-bindings>

jaxb.properties

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

デモ

package forum11991936;

import java.util.*;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;

import org.eclipse.persistence.jaxb.JAXBContextProperties;

public class Demo {

    public static void main(String[] args) throws Exception {
        Map<String, Object> properties = new HashMap<String, Object>();
        properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, "forum11991936/oxm.xml");
        JAXBContext jc = JAXBContext.newInstance(new Class[] {PhoneNumber.class}, properties);

        PhoneNumber pn = new PhoneNumber();
        pn.setType("cell");
        pn.setNumber("555-1111");

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(pn, System.out);
    }
}

出力

<?xml version="1.0" encoding="UTF-8"?>
<phone-number type="cell">555-1111</phone-number>
于 2012-08-16T20:59:42.713 に答える