Jaxb marshaller总是写xsi:nil(即使在@XmlElement(required = false,nillable = true)时)

时间:2011-05-05 12:39:07

标签: jaxb marshalling xml-nil

我有一个用@XmlElement(required=false, nillable=true)注释的java属性。当对象编组为xml时,始终使用xsi:nil="true"属性输出。

是否有jaxbcontext / marshaller选项指示编组人员不要编写该元素,而不是用xsi:nil编写它?

我已经找到了答案并且还看了一下代码,afaics,如果xsi:nil,它总是会写nillable = true。我错过了什么吗?

1 个答案:

答案 0 :(得分:4)

如果该属性使用@XmlElement(required=false, nillable=true)注释且值为null,则会使用xsi:nil="true"写出。

如果仅使用@XmlElement对其进行注释,您将获得所需的行为。

import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement;

示例

鉴于以下课程:

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

    @XmlElement(nillable=true, required=true)
    private String elementNillableRequired;

    @XmlElement(nillable=true)
    private String elementNillbable;

    @XmlElement(required=true)
    private String elementRequired;

    @XmlElement
    private String element;

}

这个演示代码:

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;

public class Demo {

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

        Root root = new Root();

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);

        marshaller.marshal(root, System.out);
    }

}

结果将是:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
    <elementNillableRequired xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
    <elementNillbable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</root>