All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.jackson.dataformat.xml.XmlMapper Maven / Gradle / Ivy

Go to download

Data format extension for Jackson (http://jackson.codehaus.org) to offer alternative support for serializing POJOs as XML and deserializing XML as pojos. Support implemented on top of Stax API (javax.xml.stream), by implementing core Jackson Streaming API types like JsonGenerator, JsonParser and JsonFactory. Some data-binding types overridden as well (ObjectMapper sub-classed as XmlMapper).

There is a newer version: 2.17.1
Show newest version
package com.fasterxml.jackson.dataformat.xml;

import java.io.IOException;

import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLOutputFactory;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;

import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.cfg.MapperBuilder;
import com.fasterxml.jackson.databind.jsontype.PolymorphicTypeValidator;
import com.fasterxml.jackson.databind.jsontype.TypeResolverBuilder;
import com.fasterxml.jackson.dataformat.xml.deser.FromXmlParser;
import com.fasterxml.jackson.dataformat.xml.ser.ToXmlGenerator;
import com.fasterxml.jackson.dataformat.xml.ser.XmlSerializerProvider;
import com.fasterxml.jackson.dataformat.xml.util.DefaultXmlPrettyPrinter;
import com.fasterxml.jackson.dataformat.xml.util.XmlRootNameLookup;

/**
 * Customized {@link ObjectMapper} that will read and write XML instead of JSON,
 * using XML-backed {@link com.fasterxml.jackson.core.JsonFactory}
 * implementation ({@link XmlFactory}).
 *

* Mapper itself overrides some aspects of functionality to try to handle * data binding aspects as similar to JAXB as possible. *

* Note that most of configuration should be done by pre-constructing * {@link JacksonXmlModule} explicitly, instead of relying on default settings. */ public class XmlMapper extends ObjectMapper { // as of 2.6 private static final long serialVersionUID = 1L; /** * Builder implementation for constructing {@link XmlMapper} instances. * * @since 2.10 */ public static class Builder extends MapperBuilder { public Builder(XmlMapper m) { super(m); } public Builder enable(FromXmlParser.Feature... features) { for (FromXmlParser.Feature f : features) { _mapper.enable(f); } return this; } public Builder disable(FromXmlParser.Feature... features) { for (FromXmlParser.Feature f : features) { _mapper.disable(f); } return this; } public Builder configure(FromXmlParser.Feature feature, boolean state) { if (state) { _mapper.enable(feature); } else { _mapper.disable(feature); } return this; } public Builder enable(ToXmlGenerator.Feature... features) { for (ToXmlGenerator.Feature f : features) { _mapper.enable(f); } return this; } public Builder disable(ToXmlGenerator.Feature... features) { for (ToXmlGenerator.Feature f : features) { _mapper.disable(f); } return this; } public Builder configure(ToXmlGenerator.Feature feature, boolean state) { if (state) { _mapper.enable(feature); } else { _mapper.disable(feature); } return this; } public Builder nameForTextElement(String name) { _mapper.setXMLTextElementName(name); return this; } public Builder defaultUseWrapper(boolean state) { _mapper.setDefaultUseWrapper(state); return this; } } protected final static JacksonXmlModule DEFAULT_XML_MODULE = new JacksonXmlModule(); protected final static DefaultXmlPrettyPrinter DEFAULT_XML_PRETTY_PRINTER = new DefaultXmlPrettyPrinter(); // need to hold on to module instance just in case copy() is used protected final JacksonXmlModule _xmlModule; /* /********************************************************** /* Life-cycle: construction, configuration /********************************************************** */ public XmlMapper() { this(new XmlFactory()); } /** * @since 2.4 */ public XmlMapper(XMLInputFactory inputF, XMLOutputFactory outF) { this(new XmlFactory(inputF, outF)); } /** * @since 2.4 */ public XmlMapper(XMLInputFactory inputF) { this(new XmlFactory(inputF)); } public XmlMapper(XmlFactory xmlFactory) { this(xmlFactory, DEFAULT_XML_MODULE); } public XmlMapper(JacksonXmlModule module) { this(new XmlFactory(), module); } public XmlMapper(XmlFactory xmlFactory, JacksonXmlModule module) { /* Need to override serializer provider (due to root name handling); * deserializer provider fine as is */ super(xmlFactory, new XmlSerializerProvider(new XmlRootNameLookup()), null); _xmlModule = module; // but all the rest is done via Module interface! if (module != null) { registerModule(module); } // 19-May-2015, tatu: Must ensure we use XML-specific indenter _serializationConfig = _serializationConfig.withDefaultPrettyPrinter(DEFAULT_XML_PRETTY_PRINTER); // 21-Jun-2017, tatu: Seems like there are many cases in XML where ability to coerce empty // String into `null` (where it otherwise is an error) is very useful. enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT); } /** * @since 2.8.9 */ protected XmlMapper(XmlMapper src) { super(src); _xmlModule = src._xmlModule; } @Override public XmlMapper copy() { _checkInvalidCopy(XmlMapper.class); return new XmlMapper(this); } /** * @since 2.10 */ public static XmlMapper.Builder xmlBuilder() { return new XmlMapper.Builder(new XmlMapper()); } /** * @since 2.10 */ public static XmlMapper.Builder builder() { return new XmlMapper.Builder(new XmlMapper()); } /** * @since 2.10 */ public static XmlMapper.Builder builder(XmlFactory streamFactory) { return new XmlMapper.Builder(new XmlMapper(streamFactory)); } @Override public Version version() { return PackageVersion.VERSION; } /* /********************************************************** /* Factory method overrides /********************************************************** */ @Override // since 2.10 protected TypeResolverBuilder _constructDefaultTypeResolverBuilder(DefaultTyping applicability, PolymorphicTypeValidator ptv) { return new DefaultingXmlTypeResolverBuilder(applicability, ptv); } /* /********************************************************** /* Additional XML-specific configurations /********************************************************** */ /** * Method called by {@link JacksonXmlModule} to pass configuration * information to {@link XmlFactory}, during registration; NOT * exposed as public method since configuration should be done * via {@link JacksonXmlModule}. * * @since 2.1 * * @deprecated Since 2.10 use {@link Builder#nameForTextElement(String)} instead */ @Deprecated protected void setXMLTextElementName(String name) { ((XmlFactory) _jsonFactory).setXMLTextElementName(name); } /** * Since 2.7 * * @deprecated Since 2.10 use {@link Builder#defaultUseWrapper(boolean)} instead */ @Deprecated public XmlMapper setDefaultUseWrapper(boolean state) { // ser and deser configs should usually have the same introspector, so: AnnotationIntrospector ai0 = getDeserializationConfig().getAnnotationIntrospector(); for (AnnotationIntrospector ai : ai0.allIntrospectors()) { if (ai instanceof XmlAnnotationIntrospector) { ((XmlAnnotationIntrospector) ai).setDefaultUseWrapper(state); } } return this; } /* /********************************************************** /* Access to configuration settings /********************************************************** */ @Override public XmlFactory getFactory() { return (XmlFactory) _jsonFactory; } public ObjectMapper configure(ToXmlGenerator.Feature f, boolean state) { ((XmlFactory)_jsonFactory).configure(f, state); return this; } public ObjectMapper configure(FromXmlParser.Feature f, boolean state) { ((XmlFactory)_jsonFactory).configure(f, state); return this; } public ObjectMapper enable(ToXmlGenerator.Feature f) { ((XmlFactory)_jsonFactory).enable(f); return this; } public ObjectMapper enable(FromXmlParser.Feature f) { ((XmlFactory)_jsonFactory).enable(f); return this; } public ObjectMapper disable(ToXmlGenerator.Feature f) { ((XmlFactory)_jsonFactory).disable(f); return this; } public ObjectMapper disable(FromXmlParser.Feature f) { ((XmlFactory)_jsonFactory).disable(f); return this; } /* /********************************************************** /* XML-specific access /********************************************************** */ /** * Method for reading a single XML value from given XML-specific input * source; useful for incremental data-binding, combining traversal using * basic Stax {@link XMLStreamReader} with data-binding by Jackson. * * @since 2.4 */ public T readValue(XMLStreamReader r, Class valueType) throws IOException { return readValue(r, _typeFactory.constructType(valueType)); } /** * Method for reading a single XML value from given XML-specific input * source; useful for incremental data-binding, combining traversal using * basic Stax {@link XMLStreamReader} with data-binding by Jackson. * * @since 2.4 */ public T readValue(XMLStreamReader r, TypeReference valueTypeRef) throws IOException { return readValue(r, _typeFactory.constructType(valueTypeRef)); } /** * Method for reading a single XML value from given XML-specific input * source; useful for incremental data-binding, combining traversal using * basic Stax {@link XMLStreamReader} with data-binding by Jackson. * * @since 2.4 */ @SuppressWarnings("resource") public T readValue(XMLStreamReader r, JavaType valueType) throws IOException { FromXmlParser p = getFactory().createParser(r); return super.readValue(p, valueType); } /** * Method for serializing given value using specific {@link XMLStreamReader}: * useful when building large XML files by binding individual items, one at * a time. * * @since 2.4 */ public void writeValue(XMLStreamWriter w0, Object value) throws IOException { @SuppressWarnings("resource") ToXmlGenerator g = getFactory().createGenerator(w0); super.writeValue(g, value); // NOTE: above call should do flush(); and we should NOT close here. // Finally, 'g' has no buffers to release. } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy