Package | Description |
---|---|
org.springframework.http.converter.xml |
Provides HttpMessageConverter implementations for handling XML.
|
org.springframework.jms.support.converter |
Provides a MessageConverter abstraction to convert
between Java objects and JMS messages.
|
org.springframework.messaging.converter |
Provides support for message conversion.
|
org.springframework.oxm |
Root package for Spring's O/X Mapping integration classes.
|
org.springframework.oxm.castor |
Package providing integration of Castor
within Spring's O/X Mapping support.
|
org.springframework.oxm.jaxb |
Package providing integration of JAXB
with Spring's O/X Mapping support.
|
org.springframework.oxm.jibx |
Package providing integration of JiBX
with Spring's O/X Mapping support.
|
org.springframework.oxm.mime |
Contains (un)marshallers optimized to store binary data in MIME attachments.
|
org.springframework.oxm.support |
Provides generic support classes for using Spring's O/X Mapping integration
within various scenario's.
|
org.springframework.oxm.xstream |
Package providing integration of XStream
with Spring's O/X Mapping support.
|
Modifier and Type | Method and Description |
---|---|
void |
MarshallingHttpMessageConverter.setUnmarshaller(Unmarshaller unmarshaller)
Set the
Unmarshaller to be used by this message converter. |
Constructor and Description |
---|
MarshallingHttpMessageConverter(Marshaller marshaller,
Unmarshaller unmarshaller)
Construct a new
MarshallingMessageConverter with the given
Marshaller and Unmarshaller . |
Modifier and Type | Method and Description |
---|---|
void |
MarshallingMessageConverter.setUnmarshaller(Unmarshaller unmarshaller)
Set the
Unmarshaller to be used by this message converter. |
protected java.lang.Object |
MarshallingMessageConverter.unmarshalFromBytesMessage(BytesMessage message,
Unmarshaller unmarshaller)
Unmarshal the given
BytesMessage into an object. |
protected java.lang.Object |
MarshallingMessageConverter.unmarshalFromMessage(Message message,
Unmarshaller unmarshaller)
Template method that allows for custom message unmarshalling.
|
protected java.lang.Object |
MarshallingMessageConverter.unmarshalFromTextMessage(TextMessage message,
Unmarshaller unmarshaller)
Unmarshal the given
TextMessage into an object. |
Constructor and Description |
---|
MarshallingMessageConverter(Marshaller marshaller,
Unmarshaller unmarshaller)
Construct a new
MarshallingMessageConverter with the
given Marshaller and Unmarshaller. |
Modifier and Type | Method and Description |
---|---|
Unmarshaller |
MarshallingMessageConverter.getUnmarshaller()
Return the configured unmarshaller.
|
Modifier and Type | Method and Description |
---|---|
void |
MarshallingMessageConverter.setUnmarshaller(Unmarshaller unmarshaller)
Set the
Unmarshaller to be used by this message converter. |
Modifier and Type | Interface and Description |
---|---|
interface |
GenericUnmarshaller
Subinterface of
Unmarshaller that has support for Java 5 generics. |
Modifier and Type | Class and Description |
---|---|
class |
CastorMarshaller
Deprecated.
as of Spring Framework 4.3.13, due to the lack of activity on the Castor project
|
Modifier and Type | Class and Description |
---|---|
class |
Jaxb2Marshaller
Implementation of the
GenericMarshaller interface for JAXB 2.2. |
Modifier and Type | Class and Description |
---|---|
class |
JibxMarshaller
Implementation of the
Marshaller and Unmarshaller interfaces for JiBX. |
Modifier and Type | Interface and Description |
---|---|
interface |
MimeUnmarshaller
Subinterface of
Unmarshaller that can use MIME attachments
to optimize storage of binary data. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMarshaller
Abstract implementation of the
Marshaller and Unmarshaller interface. |
Modifier and Type | Class and Description |
---|---|
class |
XStreamMarshaller
Implementation of the
Marshaller interface for XStream. |