I think I found a solution using XMLStreamWriter .
Try the following snippet:
XMLOutputFactory factory = XMLOutputFactory.newInstance(); factory.createXMLStreamWriter(new DOMResult(yourNode)); XmlMapper mapper = new XmlMapper(); ToXmlGenerator xmlGenerator = mapper .getFactory().createGenerator(sw); mapper.writerFor(YourClass.class).writeValue(xmlGenerator, yourInstance);
source share