Marshal empty列为缺少JAXB的节点

时间:2012-11-07 11:15:06

标签: java xml jaxb moxy

使用JAXB我希望有可能将空列表编组为缺少节点。我认为EclipseLink MOXy有这种可能性,但我无法让它工作。

根据:http://wiki.eclipse.org/User:Rick.barkhouse.oracle.com/Test1你应该能够这样做:

@XmlElementWrapper(name="line-items", nillable=true)
@XmlNullPolicy(shouldMarshalEmptyCollections=false)
List<LineItem> item = null;

但是

shouldMarshalEmptyCollections

不是有效的财产。

我尝试过使用eclipselink 2.4.0,2.4.1和2.5.0-M4。我做错了什么?

1 个答案:

答案 0 :(得分:0)

您可以使用EclipseLink JAXB (MOXy)@XmlPath映射来映射此用例。我将通过下面的示例演示如何与使用@XmlElementWrapper进行比较。

<强>根

package forum13268598;

import java.util.List;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {

    @XmlElementWrapper(name="line-items-element-wrapper")
    List<LineItem> item1 = null;

    @XmlPath("line-items-xml-path/item1")
    List<LineItem> item2 = null;

}

<强> jaxb.properties

要将MOXy用作JAXB提供程序,您需要在与域模型相同的程序包中包含名为jaxb.properties的文件,并带有以下条目(请参阅:http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html)。

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

<强>演示

package forum13268598;

import java.util.ArrayList;
import javax.xml.bind.*;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Root.class);

        Root root = new Root();
        root.item1 = new ArrayList<LineItem>();
        root.item2 = new ArrayList<LineItem>();

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

}

<强>输出

@XmlElementWrapper用例中,为空集合写出了一个元素,但它不适用于@XmlPath用例。

<?xml version="1.0" encoding="UTF-8"?>
<root>
   <line-items-element-wrapper/>
</root>