我有一个用@XmlElement(required=false, nillable=true)
注释的java属性。当对象编组为xml时,始终使用xsi:nil="true"
属性输出。
是否有jaxbcontext / marshaller选项指示编组人员不要编写该元素,而不是用xsi:nil
编写它?
我已经找到了答案并且还看了一下代码,afaics,如果xsi:nil
,它总是会写nillable = true
。我错过了什么吗?
答案 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>