11

我有一个用@XmlElement(required=false, nillable=true). 当对象被编组为 xml 时,它总是与xsi:nil="true"属性一起输出。

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

我一直在寻找这个问题的答案,还查看了代码,afaics,它总是会写xsi:nilif nillable = true。我错过了什么吗?

4

1 回答 1

6

如果属性用 注释@XmlElement(required=false, nillable=true)并且值为 null ,它将用 写出xsi:nil="true"

如果你只用注释它,@XmlElement你会得到你正在寻找的行为。

导入 javax.xml.bind.annotation.XmlAccessType;导入 javax.xml.bind.annotation.XmlAccessorType;导入 javax.xml.bind.annotation.XmlElement;导入 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>
于 2011-05-05T13:05:25.657 回答