JAXB and property ordering

JavaJaxbXml Binding

Java Problem Overview


I want the serialized XML output from my Java class to honor the ordering of the properties in the Java class.

It seems that JAXB orders alphabetically.

I can override this by using @XmlType with propOrder and specifying ALL of the properties, but I have a class with many properties and these are not yet finalized.

I read that specifying an empty propOrder would do it but it don't.

My example class:

package test;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlRootElement
//@XmlType(propOrder={"company", "scheme", "agreementNumber"})
@XmlType(propOrder={}) // makes no difference - still alphabetical in XML 
public class CustomerPlan2 {

	private String company;
	private String scheme;
	private String agreementNumber;

	@XmlElement(name="Company")
	public String getCompany() {
		return company;
	}
	public void setCompany(String company) {
		this.company = company;
	}

	@XmlElement(name="Scheme")
	public String getScheme() {
		return scheme;
	}
	public void setScheme(String scheme) {
		this.scheme = scheme;
	}

	@XmlElement(name="AgreementNumber")
	public String getAgreementNumber() {
		return agreementNumber;
	}
	public void setAgreementNumber(String agreementNumber) {
		this.agreementNumber = agreementNumber;
	}
}

My serialize code:

	CustomerPlan2 cp2 = new CustomerPlan2();
	
	cp2.setCompany("company");
	cp2.setScheme("scheme");
	cp2.setAgreementNumber("agreementnumber");
	JAXBContext context = JAXBContext.newInstance(CustomerPlan2.class);
	Marshaller marshaller = context.createMarshaller();

	marshaller.marshal(cp2, new FileWriter("C:\\temp\\out.xml"));

Output:

	<customerPlan2>
	  <AgreementNumber>agreementnumber</AgreementNumber> 
	  <Company>company</Company> 
	  <Scheme>scheme</Scheme> 
	</customerPlan2>

I want my output to be (as the property order of my class):

	<customerPlan2>
	  <Company>company</Company>
	  <Scheme>scheme</Scheme> 
	  <AgreementNumber>agreementnumber</AgreementNumber> 
	</customerPlan2>

Thanks for any help on this.

Java Solutions


Solution 1 - Java

It's possible using:

@XmlType (propOrder={"prop1","prop2",..."propN"})

Just uncomment the code like this:

//@XmlType(propOrder={"company", "scheme", "agreementNumber"})

This is the correct usage.

Solution 2 - Java

Note: I lead EclipseLink JAXB (MOXy)

The order in which Java reflection returns the list of fields/properties is not guaranteed. This is why JAXB implementations do not use it to determine element order.

By default JAXB provides no guaranteed ordering. However most (if not all JAXB implementations) use alphabetical ordering since it is deterministic. To guarantee this ordering you must annotate your class as follows:

@XmlAccessorOrder(XmlAccessOrder.ALPHABETICAL)
public class Foo {
    ...
}

Solution 3 - Java

@XmlType(propOrder={"company", "scheme", "agreementNumber"})

It's correct, but have you tried this?

@XmlType(propOrder={"Company", "Scheme", "AgreementNumber"})

Solution 4 - Java

This thread is old but worth throwing how I got my properties to generate xml in the proper order and NOT using alphabetical ordering as that was undesired. One thing to note is that I am using wink and jaxb which may behave differently then other providers. Wink was very specific about what was in the propertly list. Even elements I mark as xml transient, or not decorated at all were required to be part of

@XmlRootElement(name = "Product")
@XmlType(name="",propOrder={"productName","productVersion",..."propN"})

...admittedly I don't enough of WHY it works!:)

Solution 5 - Java

According to this, the order of sibling XML elements is not guaranteed.

Solution 6 - Java

In @XmlType(propOrder={"prop1", "prop2"}) you can declare only propertyName you declared in the class. You cannot declare

XMLElement name (
@XmlElement(name="Company"))

in the XmlType propOrder as mentioned by above..

Solution 7 - Java

Just add :

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(propOrder={"field1", "field2", ...})

Solution 8 - Java

You have to add the propOrder and the XmlAccessType annotations to the class.

@XmlAccessorType(XmlAccessType.FIELD)

@XmlType(propOrder = {"PartyType","PartyName","PartyAddress"})

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionandy hallamView Question on Stackoverflow
Solution 1 - JavaVIVEK PANDIAN SView Answer on Stackoverflow
Solution 2 - JavabdoughanView Answer on Stackoverflow
Solution 3 - JavaIulian Alexandru CosteiuView Answer on Stackoverflow
Solution 4 - JavaDougView Answer on Stackoverflow
Solution 5 - JavaDavid WeiserView Answer on Stackoverflow
Solution 6 - JavagubsView Answer on Stackoverflow
Solution 7 - JavaRyanView Answer on Stackoverflow
Solution 8 - JavaDon ThomasView Answer on Stackoverflow