Jaxb和无序集合,每个元素都有单独的列表

时间:2012-07-17 09:13:20

标签: java xml jaxb xjc

我有一个带序列的xml架构。

<xs:sequence>
    <xs:element maxOccurs="unbounded" ref="x"/>
    <xs:element maxOccurs="unbounded" ref="y"/>
</xs:sequence>

在这种情况下,所有x必须在所有y之前发生。 那不是我想要的。所以我尝试了选择但是在使用它时,当我生成相应的类时,所有x和y都被映射到列表中。

有没有办法让x和y的单独列表在xml中没有特殊顺序?

1 个答案:

答案 0 :(得分:0)

在解组时,

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;

}

<强> input.xml中

下面是一个示例XML文档,其中List项目混合在一起:

<?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>