JAXB (JSR-222)実装は、アンマーシャリング時の XML 要素の順序をかなり許容します。以下に例を挙げて説明します。
根
List
以下は、個別のプロパティを持つドメイン オブジェクトです。
package forum11519412;
import java.util.List;
import javax.xml.bind.annotation.*;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {
List<String> x;
List<Integer> y;
}
入力.xml
List
以下は、アイテムが混同されているXML ドキュメントのサンプルです。
<?xml version="1.0" encoding="UTF-8"?>
<root>
<y>1</y>
<x>A</x>
<y>2</y>
<x>B</x>
<y>3</y>
<x>C</x>
</root>
デモ
デモ コードは、アンマーシャリングinput.xml
とマーシャリングを行います。
package forum11519412;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Root.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum11519412/input.xml");
Root root = (Root) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(root, System.out);
}
}
出力
結果の XML では、コンテンツが順序付けされて表示されます。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<x>A</x>
<x>B</x>
<x>C</x>
<y>1</y>
<y>2</y>
<y>3</y>
</root>