NOTE
Jackson is not a JAXB (JSR-222) compliant implementation. This means there are no guarantees on how it interprets the standard JAXB annotations
By default a JAXB (JSR-222) compliant implementation does not apply a wrapper element to collection properties.
A
By default a JAXB (JSR-222) implementation will default mappings based on the properties. To save space I have omitted those methods and specified @XmlAccessorType(XmlAccessType.FIELD)
so that the metadata will be derived from the instance variables (fields).
package forum13097559;
import java.util.List;
import javax.xml.bind.annotation.*;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class A {
private String b1;
private String b2;
private List<B3> b3;
}
B3
package forum13097559;
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
public class B3 {
private String c1;
private String c2;
}
Demo
package forum13097559;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(A.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum13097559/input.xml");
A a = (A) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(a, System.out);
}
}
input.xml/Output
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<a>
<b1>b1</b1>
<b2>b2</b2>
<b3>
<c1></c1>
<c2></c2>
</b3>
<b3>
<c1></c1>
<c2></c2>
</b3>
<b3>
<c1></c1>
<c2></c2>
</b3>
</a>
For More Information