Если свойство помечено @XmlElement(required=false, nillable=true)
, а значение равно нулю, оно будет записано с 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>