use of org.jibx.runtime.impl.StAXWriter in project spring-framework by spring-projects.
the class JibxMarshaller method marshalXmlStreamWriter.
@Override
protected void marshalXmlStreamWriter(Object graph, XMLStreamWriter streamWriter) throws XmlMappingException {
try {
MarshallingContext marshallingContext = (MarshallingContext) createMarshallingContext();
IXMLWriter xmlWriter = new StAXWriter(marshallingContext.getNamespaces(), streamWriter);
marshallingContext.setXmlWriter(xmlWriter);
marshallingContext.marshalDocument(graph);
} catch (JiBXException ex) {
throw convertJibxException(ex, false);
}
}
Aggregations