gpt4 book ai didi

Jaxb marshaller 总是写 xsi :nil (even when @XmlElement(required=false, nillable=true))

转载 作者:行者123 更新时间:2023-12-04 02:21:48 26 4
gpt4 key购买 nike

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

是否有 jaxbcontext/marshaller 选项来指示编码器不写入元素,而不是使用 xsi:nil 写入元素?

我已经寻找了这个问题的答案,也看了代码,afaics,它总是会写 xsi:nil如果 nillable = true .我错过了什么吗?

最佳答案

如果该属性带有 @XmlElement(required=false, nillable=true) 注释如果值为空,则用 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>

关于Jaxb marshaller 总是写 xsi :nil (even when @XmlElement(required=false, nillable=true)),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5897785/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com