Class XStreamMarshaller
- All Implemented Interfaces:
Aware
,BeanClassLoaderAware
,InitializingBean
,Marshaller
,Unmarshaller
Marshaller
interface for XStream.
By default, XStream does not require any further configuration and can (un)marshal
any class on the classpath. As such, it is not recommended to use the
XStreamMarshaller
to unmarshal XML from external sources (i.e. the Web),
as this can result in security vulnerabilities. If you do use the
XStreamMarshaller
to unmarshal external XML, set the
supportedClasses
and
converters
properties (possibly using
a CatchAllConverter
) or override the customizeXStream(XStream)
method to make sure it only accepts the classes you want it to support.
Due to XStream's API, it is required to set the encoding used for writing to
OutputStreams. It defaults to UTF-8
.
NOTE: XStream is an XML serialization library, not a data binding library. Therefore, it has limited namespace support. As such, it is rather unsuitable for usage within Web Services.
This marshaller requires XStream 1.4.7 or higher.
As of Spring Framework 6.0, the default HierarchicalStreamDriver
is
a DomDriver
that uses the configured encoding and NameCoder
. The driver can be
changed via setStreamDriver(HierarchicalStreamDriver)
.
- Since:
- 3.0
- Author:
- Peter Meijer, Arjen Poutsma, Juergen Hoeller, Sam Brannen
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The default encoding used for stream access: UTF-8.Fields inherited from class org.springframework.oxm.support.AbstractMarshaller
logger
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Invoked by the containingBeanFactory
after it has set all bean properties and satisfiedBeanFactoryAware
,ApplicationContextAware
etc.protected com.thoughtworks.xstream.XStream
Build the native XStream delegate to be used by this marshaller, delegating toconstructXStream()
,configureXStream(com.thoughtworks.xstream.XStream)
, andcustomizeXStream(com.thoughtworks.xstream.XStream)
.protected void
configureXStream
(com.thoughtworks.xstream.XStream xstream) Configure the XStream instance with this marshaller's bean properties.protected com.thoughtworks.xstream.XStream
Construct an XStream instance, either using one of the standard constructors or creating a custom subclass.protected XmlMappingException
convertXStreamException
(Exception ex, boolean marshalling) Convert the given XStream exception to an appropriate exception from theorg.springframework.oxm
hierarchy.protected void
customizeXStream
(com.thoughtworks.xstream.XStream xstream) Template to allow for customizing the givenXStream
.protected String
Determine the default encoding to use for marshalling or unmarshalling from a byte stream, ornull
if none.final com.thoughtworks.xstream.XStream
Return the native XStream delegate used by this marshaller.protected void
marshalDomNode
(Object graph, Node node) Abstract template method for marshalling the given object graph to a DOMNode
.void
marshalOutputStream
(Object graph, OutputStream outputStream) Abstract template method for marshalling the given object graph to aOutputStream
.void
marshalOutputStream
(Object graph, OutputStream outputStream, com.thoughtworks.xstream.converters.DataHolder dataHolder) protected void
marshalSaxHandlers
(Object graph, ContentHandler contentHandler, LexicalHandler lexicalHandler) Abstract template method for marshalling the given object graph to a SAXContentHandler
.void
marshalWriter
(Object graph, Writer writer) Abstract template method for marshalling the given object graph to aWriter
.void
marshalWriter
(Object graph, Writer writer, com.thoughtworks.xstream.converters.DataHolder dataHolder) protected void
marshalXmlEventWriter
(Object graph, XMLEventWriter eventWriter) Abstract template method for marshalling the given object to a StAXXMLEventWriter
.protected void
marshalXmlStreamWriter
(Object graph, XMLStreamWriter streamWriter) Abstract template method for marshalling the given object to a StAXXMLStreamWriter
.void
setAliases
(Map<String, ?> aliases) Set the alias/type map, consisting of string aliases mapped to classes.void
setAliasesByType
(Map<String, ?> aliasesByType) Set the aliases by type map, consisting of string aliases mapped to classes.void
setAnnotatedClasses
(Class<?>... annotatedClasses) Set annotated classes for which aliases will be read from class-level annotation metadata.void
setAutodetectAnnotations
(boolean autodetectAnnotations) Activate XStream's autodetection mode.void
setBeanClassLoader
(ClassLoader classLoader) Callback that supplies the beanclass loader
to a bean instance.void
setConverterLookup
(com.thoughtworks.xstream.converters.ConverterLookup converterLookup) Set a custom XStreamConverterLookup
to use.void
setConverterRegistry
(com.thoughtworks.xstream.converters.ConverterRegistry converterRegistry) Set a custom XStreamConverterRegistry
to use.void
setConverters
(com.thoughtworks.xstream.converters.ConverterMatcher... converters) Set theConverters
orSingleValueConverters
to be registered with theXStream
instance.void
setEncoding
(String encoding) Set the encoding to be used for stream access.void
setFieldAliases
(Map<String, String> fieldAliases) Set the field alias/type map, consisting of field names.void
setImplicitCollections
(Map<Class<?>, String> implicitCollections) Specify implicit collection fields, as a Map consisting ofClass
instances mapped to comma separated collection field names.void
setMapper
(com.thoughtworks.xstream.mapper.Mapper mapper) Set a custom XStreamMapper
to use.void
setMapperWrappers
(Class<? extends com.thoughtworks.xstream.mapper.MapperWrapper>... mapperWrappers) Set one or more custom XStreamMapperWrapper
classes.void
setMarshallingStrategy
(com.thoughtworks.xstream.MarshallingStrategy marshallingStrategy) Set a custom XStreamMarshallingStrategy
to use.void
setMode
(int mode) Set the XStream mode to use.void
setNameCoder
(com.thoughtworks.xstream.io.naming.NameCoder nameCoder) Set a custom XStreamNameCoder
to use.void
setOmittedFields
(Map<Class<?>, String> omittedFields) Specify omitted fields, as a Map consisting ofClass
instances mapped to comma separated field names.void
setReflectionProvider
(com.thoughtworks.xstream.converters.reflection.ReflectionProvider reflectionProvider) Set a custom XStreamReflectionProvider
to use.void
setStreamDriver
(com.thoughtworks.xstream.io.HierarchicalStreamDriver streamDriver) Set an XStreamHierarchicalStreamDriver
to be used for readers and writers.void
setSupportedClasses
(Class<?>... supportedClasses) Set the classes supported by this marshaller.void
setTypePermissions
(com.thoughtworks.xstream.security.TypePermission... typePermissions) Set XStream type permissions such asAnyTypePermission
,ExplicitTypePermission
etc, as an alternative to overriding thecustomizeXStream(com.thoughtworks.xstream.XStream)
method.void
setUseAttributeFor
(Map<?, ?> useAttributeFor) Set the types to use XML attributes for.void
setUseAttributeForTypes
(Class<?>... useAttributeForTypes) Set types to use XML attributes for.boolean
Indicate whether this marshaller can marshal instances of the supplied type.protected Object
unmarshalDomNode
(Node node) Abstract template method for unmarshalling from a given DOMNode
.unmarshalInputStream
(InputStream inputStream) Abstract template method for unmarshalling from a givenInputStream
.unmarshalInputStream
(InputStream inputStream, com.thoughtworks.xstream.converters.DataHolder dataHolder) unmarshalReader
(Reader reader) Abstract template method for unmarshalling from a givenReader
.unmarshalReader
(Reader reader, com.thoughtworks.xstream.converters.DataHolder dataHolder) protected Object
unmarshalSaxReader
(XMLReader xmlReader, InputSource inputSource) Abstract template method for unmarshalling using a given SAXXMLReader
andInputSource
.protected Object
unmarshalStreamSource
(StreamSource streamSource) Template method for handlingStreamSource
s.protected Object
unmarshalXmlEventReader
(XMLEventReader eventReader) Abstract template method for unmarshalling from a given StaxXMLEventReader
.protected Object
unmarshalXmlStreamReader
(XMLStreamReader streamReader) Abstract template method for unmarshalling from a given StaxXMLStreamReader
.Methods inherited from class org.springframework.oxm.support.AbstractMarshaller
buildDocument, createDocumentBuilder, createDocumentBuilderFactory, createXmlReader, isProcessExternalEntities, isSupportDtd, marshal, marshalDomResult, marshalSaxResult, marshalStaxResult, marshalStreamResult, setProcessExternalEntities, setSupportDtd, unmarshal, unmarshalDomSource, unmarshalSaxSource, unmarshalStaxSource
-
Field Details
-
DEFAULT_ENCODING
The default encoding used for stream access: UTF-8.- See Also:
-
-
Constructor Details
-
XStreamMarshaller
public XStreamMarshaller()
-
-
Method Details
-
setReflectionProvider
public void setReflectionProvider(com.thoughtworks.xstream.converters.reflection.ReflectionProvider reflectionProvider) Set a custom XStreamReflectionProvider
to use.- Since:
- 4.0
-
setStreamDriver
public void setStreamDriver(com.thoughtworks.xstream.io.HierarchicalStreamDriver streamDriver) Set an XStreamHierarchicalStreamDriver
to be used for readers and writers.As of Spring 4.0, this stream driver will also be passed to the
XStream
constructor and therefore used by streaming-related native API methods themselves. -
setMapper
public void setMapper(com.thoughtworks.xstream.mapper.Mapper mapper) Set a custom XStreamMapper
to use.- Since:
- 4.0
-
setMapperWrappers
public void setMapperWrappers(Class<? extends com.thoughtworks.xstream.mapper.MapperWrapper>... mapperWrappers) Set one or more custom XStreamMapperWrapper
classes. Each of those classes needs to have a constructor with a single argument of typeMapper
orMapperWrapper
.- Since:
- 4.0
-
setConverterLookup
public void setConverterLookup(com.thoughtworks.xstream.converters.ConverterLookup converterLookup) Set a custom XStreamConverterLookup
to use. Also used asConverterRegistry
if the given reference implements it as well.- Since:
- 4.0
- See Also:
-
DefaultConverterLookup
-
setConverterRegistry
public void setConverterRegistry(com.thoughtworks.xstream.converters.ConverterRegistry converterRegistry) Set a custom XStreamConverterRegistry
to use.- Since:
- 4.0
- See Also:
-
setConverterLookup(com.thoughtworks.xstream.converters.ConverterLookup)
DefaultConverterLookup
-
setConverters
public void setConverters(com.thoughtworks.xstream.converters.ConverterMatcher... converters) Set theConverters
orSingleValueConverters
to be registered with theXStream
instance.- See Also:
-
Converter
SingleValueConverter
-
setTypePermissions
public void setTypePermissions(com.thoughtworks.xstream.security.TypePermission... typePermissions) Set XStream type permissions such asAnyTypePermission
,ExplicitTypePermission
etc, as an alternative to overriding thecustomizeXStream(com.thoughtworks.xstream.XStream)
method.Note: As of XStream 1.4.18, the default type permissions are restricted to well-known core JDK types. For any custom types, explicit type permissions need to be registered.
- Since:
- 5.2.17
-
setMarshallingStrategy
public void setMarshallingStrategy(com.thoughtworks.xstream.MarshallingStrategy marshallingStrategy) Set a custom XStreamMarshallingStrategy
to use.- Since:
- 4.0
-
setMode
public void setMode(int mode) Set the XStream mode to use.- See Also:
-
XStream.ID_REFERENCES
XStream.NO_REFERENCES
-
setAliases
Set the alias/type map, consisting of string aliases mapped to classes.Keys are aliases; values are either
Class
instances, or String class names.- See Also:
-
XStream.alias(String, Class)
-
setAliasesByType
Set the aliases by type map, consisting of string aliases mapped to classes.Any class that is assignable to this type will be aliased to the same name. Keys are aliases; values are either
Class
instances, or String class names.- See Also:
-
XStream.aliasType(String, Class)
-
setFieldAliases
Set the field alias/type map, consisting of field names.- See Also:
-
XStream.aliasField(String, Class, String)
-
setUseAttributeForTypes
Set types to use XML attributes for.- See Also:
-
XStream.useAttributeFor(Class)
-
setUseAttributeFor
Set the types to use XML attributes for. The given map can contain either<String, Class>
pairs, in which caseXStream.useAttributeFor(String, Class)
is called. Alternatively, the map can contain<Class, String>
or<Class, List<String>>
pairs, which results inXStream.useAttributeFor(Class, String)
calls. -
setImplicitCollections
Specify implicit collection fields, as a Map consisting ofClass
instances mapped to comma separated collection field names.- See Also:
-
XStream.addImplicitCollection(Class, String)
-
setOmittedFields
Specify omitted fields, as a Map consisting ofClass
instances mapped to comma separated field names.- See Also:
-
XStream.omitField(Class, String)
-
setAnnotatedClasses
Set annotated classes for which aliases will be read from class-level annotation metadata.- See Also:
-
XStream.processAnnotations(Class[])
-
setAutodetectAnnotations
public void setAutodetectAnnotations(boolean autodetectAnnotations) Activate XStream's autodetection mode.Note: Autodetection implies that the XStream instance is being configured while it is processing the XML streams, and thus introduces a potential concurrency problem.
- See Also:
-
XStream.autodetectAnnotations(boolean)
-
setEncoding
Set the encoding to be used for stream access.- See Also:
-
getDefaultEncoding
Description copied from class:AbstractMarshaller
Determine the default encoding to use for marshalling or unmarshalling from a byte stream, ornull
if none.The default implementation returns
null
.- Overrides:
getDefaultEncoding
in classAbstractMarshaller
-
setNameCoder
public void setNameCoder(com.thoughtworks.xstream.io.naming.NameCoder nameCoder) Set a custom XStreamNameCoder
to use. The default is anXmlFriendlyNameCoder
.- Since:
- 4.0.4
-
setSupportedClasses
Set the classes supported by this marshaller.If this property is empty (the default), all classes are supported.
- See Also:
-
setBeanClassLoader
Description copied from interface:BeanClassLoaderAware
Callback that supplies the beanclass loader
to a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as
InitializingBean's
InitializingBean.afterPropertiesSet()
method or a custom init-method.- Specified by:
setBeanClassLoader
in interfaceBeanClassLoaderAware
- Parameters:
classLoader
- the owning class loader
-
afterPropertiesSet
public void afterPropertiesSet()Description copied from interface:InitializingBean
Invoked by the containingBeanFactory
after it has set all bean properties and satisfiedBeanFactoryAware
,ApplicationContextAware
etc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.
- Specified by:
afterPropertiesSet
in interfaceInitializingBean
-
buildXStream
protected com.thoughtworks.xstream.XStream buildXStream()Build the native XStream delegate to be used by this marshaller, delegating toconstructXStream()
,configureXStream(com.thoughtworks.xstream.XStream)
, andcustomizeXStream(com.thoughtworks.xstream.XStream)
. -
constructXStream
protected com.thoughtworks.xstream.XStream constructXStream()Construct an XStream instance, either using one of the standard constructors or creating a custom subclass.- Returns:
- the
XStream
instance
-
configureXStream
protected void configureXStream(com.thoughtworks.xstream.XStream xstream) Configure the XStream instance with this marshaller's bean properties.- Parameters:
xstream
- theXStream
instance
-
customizeXStream
protected void customizeXStream(com.thoughtworks.xstream.XStream xstream) Template to allow for customizing the givenXStream
.The default implementation is empty.
- Parameters:
xstream
- theXStream
instance
-
getXStream
public final com.thoughtworks.xstream.XStream getXStream()Return the native XStream delegate used by this marshaller.The creation of the
XStream
instance returned by this method is thread safe.NOTE: This method is marked as final. It can be used to access the fully configured XStream for marshalling but not configuration purposes.
-
supports
Description copied from interface:Marshaller
Indicate whether this marshaller can marshal instances of the supplied type.- Specified by:
supports
in interfaceMarshaller
- Specified by:
supports
in interfaceUnmarshaller
- Parameters:
clazz
- the class that this marshaller is being asked if it can marshal- Returns:
true
if this marshaller can indeed marshal instances of the supplied class;false
otherwise
-
marshalDomNode
Description copied from class:AbstractMarshaller
Abstract template method for marshalling the given object graph to a DOMNode
.In practice,
node
is aDocument
node, aDocumentFragment
node, or aElement
node. In other words, a node that accepts children.- Specified by:
marshalDomNode
in classAbstractMarshaller
- Parameters:
graph
- the root of the object graph to marshalnode
- the DOM node that will contain the result tree- Throws:
XmlMappingException
- if the given object cannot be marshalled to the DOM node- See Also:
-
marshalXmlEventWriter
protected void marshalXmlEventWriter(Object graph, XMLEventWriter eventWriter) throws XmlMappingException Description copied from class:AbstractMarshaller
Abstract template method for marshalling the given object to a StAXXMLEventWriter
.- Specified by:
marshalXmlEventWriter
in classAbstractMarshaller
- Parameters:
graph
- the root of the object graph to marshaleventWriter
- theXMLEventWriter
to write to- Throws:
XmlMappingException
- if the given object cannot be marshalled to the DOM node
-
marshalXmlStreamWriter
protected void marshalXmlStreamWriter(Object graph, XMLStreamWriter streamWriter) throws XmlMappingException Description copied from class:AbstractMarshaller
Abstract template method for marshalling the given object to a StAXXMLStreamWriter
.- Specified by:
marshalXmlStreamWriter
in classAbstractMarshaller
- Parameters:
graph
- the root of the object graph to marshalstreamWriter
- theXMLStreamWriter
to write to- Throws:
XmlMappingException
- if the given object cannot be marshalled to the DOM node
-
marshalSaxHandlers
protected void marshalSaxHandlers(Object graph, ContentHandler contentHandler, @Nullable LexicalHandler lexicalHandler) throws XmlMappingException Description copied from class:AbstractMarshaller
Abstract template method for marshalling the given object graph to a SAXContentHandler
.- Specified by:
marshalSaxHandlers
in classAbstractMarshaller
- Parameters:
graph
- the root of the object graph to marshalcontentHandler
- the SAXContentHandler
lexicalHandler
- the SAX2LexicalHandler
. Can benull
.- Throws:
XmlMappingException
- if the given object cannot be marshalled to the handlers
-
marshalOutputStream
public void marshalOutputStream(Object graph, OutputStream outputStream) throws XmlMappingException, IOException Description copied from class:AbstractMarshaller
Abstract template method for marshalling the given object graph to aOutputStream
.- Specified by:
marshalOutputStream
in classAbstractMarshaller
- Parameters:
graph
- the root of the object graph to marshaloutputStream
- theOutputStream
to write to- Throws:
XmlMappingException
- if the given object cannot be marshalled to the writerIOException
- if an I/O exception occurs
-
marshalOutputStream
public void marshalOutputStream(Object graph, OutputStream outputStream, @Nullable com.thoughtworks.xstream.converters.DataHolder dataHolder) throws XmlMappingException, IOException - Throws:
XmlMappingException
IOException
-
marshalWriter
Description copied from class:AbstractMarshaller
Abstract template method for marshalling the given object graph to aWriter
.- Specified by:
marshalWriter
in classAbstractMarshaller
- Parameters:
graph
- the root of the object graph to marshalwriter
- theWriter
to write to- Throws:
XmlMappingException
- if the given object cannot be marshalled to the writerIOException
- if an I/O exception occurs
-
marshalWriter
public void marshalWriter(Object graph, Writer writer, @Nullable com.thoughtworks.xstream.converters.DataHolder dataHolder) throws XmlMappingException, IOException - Throws:
XmlMappingException
IOException
-
unmarshalStreamSource
protected Object unmarshalStreamSource(StreamSource streamSource) throws XmlMappingException, IOException Description copied from class:AbstractMarshaller
Template method for handlingStreamSource
s.This implementation delegates to
unmarshalInputStream
orunmarshalReader
.- Overrides:
unmarshalStreamSource
in classAbstractMarshaller
- Parameters:
streamSource
- theStreamSource
- Returns:
- the object graph
- Throws:
XmlMappingException
- if the given source cannot be mapped to an objectIOException
- if an I/O exception occurs
-
unmarshalDomNode
Description copied from class:AbstractMarshaller
Abstract template method for unmarshalling from a given DOMNode
.- Specified by:
unmarshalDomNode
in classAbstractMarshaller
- Parameters:
node
- the DOM node that contains the objects to be unmarshalled- Returns:
- the object graph
- Throws:
XmlMappingException
- if the given DOM node cannot be mapped to an object
-
unmarshalXmlEventReader
Description copied from class:AbstractMarshaller
Abstract template method for unmarshalling from a given StaxXMLEventReader
.- Specified by:
unmarshalXmlEventReader
in classAbstractMarshaller
- Parameters:
eventReader
- theXMLEventReader
to read from- Returns:
- the object graph
- Throws:
XmlMappingException
- if the given event reader cannot be converted to an object
-
unmarshalXmlStreamReader
Description copied from class:AbstractMarshaller
Abstract template method for unmarshalling from a given StaxXMLStreamReader
.- Specified by:
unmarshalXmlStreamReader
in classAbstractMarshaller
- Parameters:
streamReader
- theXMLStreamReader
to read from- Returns:
- the object graph
- Throws:
XmlMappingException
- if the given stream reader cannot be converted to an object
-
unmarshalSaxReader
protected Object unmarshalSaxReader(XMLReader xmlReader, InputSource inputSource) throws XmlMappingException, IOException Description copied from class:AbstractMarshaller
Abstract template method for unmarshalling using a given SAXXMLReader
andInputSource
.- Specified by:
unmarshalSaxReader
in classAbstractMarshaller
- Parameters:
xmlReader
- the SAXXMLReader
to parse withinputSource
- the input source to parse from- Returns:
- the object graph
- Throws:
XmlMappingException
- if the given reader and input source cannot be converted to an objectIOException
- if an I/O exception occurs
-
unmarshalInputStream
Description copied from class:AbstractMarshaller
Abstract template method for unmarshalling from a givenInputStream
.- Specified by:
unmarshalInputStream
in classAbstractMarshaller
- Parameters:
inputStream
- theInputStreamStream
to read from- Returns:
- the object graph
- Throws:
XmlMappingException
- if the given stream cannot be converted to an objectIOException
- if an I/O exception occurs
-
unmarshalInputStream
public Object unmarshalInputStream(InputStream inputStream, @Nullable com.thoughtworks.xstream.converters.DataHolder dataHolder) throws XmlMappingException, IOException - Throws:
XmlMappingException
IOException
-
unmarshalReader
Description copied from class:AbstractMarshaller
Abstract template method for unmarshalling from a givenReader
.- Specified by:
unmarshalReader
in classAbstractMarshaller
- Parameters:
reader
- theReader
to read from- Returns:
- the object graph
- Throws:
XmlMappingException
- if the given reader cannot be converted to an objectIOException
- if an I/O exception occurs
-
unmarshalReader
public Object unmarshalReader(Reader reader, @Nullable com.thoughtworks.xstream.converters.DataHolder dataHolder) throws XmlMappingException, IOException - Throws:
XmlMappingException
IOException
-
convertXStreamException
Convert the given XStream exception to an appropriate exception from theorg.springframework.oxm
hierarchy.A boolean flag is used to indicate whether this exception occurs during marshalling or unmarshalling, since XStream itself does not make this distinction in its exception hierarchy.
- Parameters:
ex
- the XStream exception that occurredmarshalling
- indicates whether the exception occurs during marshalling (true
), or unmarshalling (false
)- Returns:
- the corresponding
XmlMappingException
-