2

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 を使用してみました。私は何を間違っていますか?

4

1 に答える 1

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>
于 2012-11-07T14:22:29.187 に答える