简体   繁体   中英

JAXB translate element name when marshalling/un-marshalling

I am generating a java class from xsd which is used in to marshal/un-marshal xml.

I have an element currently defined in my xsd as

<xs:element maxOccurs="1" minOccurs="0" name="versionLabel" type="xs:string"/>

which results in a java class containing

String versionLabel

and setters and getters, setVersionLabel() / getVersionLabel() .

I want the incoming/outgoing xml element to be <version> and for that to translate to/from the java class property "versionLabel". How do I do define that behavior in the xsd?

add @XmlElement annotation to the attribute and update your xsd if it used for any validation

    @XmlElement(name = "version")
    String versionLabel;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM