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.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.
|
org.springframework.web.servlet.view.xml |
Support classes for providing a View implementation based on XML Marshalling.
|
Modifier and Type | Method and Description |
---|---|
void |
MarshallingHttpMessageConverter.setMarshaller(Marshaller marshaller)
Set the
Marshaller to be used by this message converter. |
Constructor and Description |
---|
MarshallingHttpMessageConverter(Marshaller marshaller)
Construct a new
MarshallingMessageConverter with the given Marshaller set. |
MarshallingHttpMessageConverter(Marshaller marshaller,
Unmarshaller unmarshaller)
Construct a new
MarshallingMessageConverter with the given
Marshaller and Unmarshaller . |
Modifier and Type | Method and Description |
---|---|
protected BytesMessage |
MarshallingMessageConverter.marshalToBytesMessage(Object object,
Session session,
Marshaller marshaller)
Marshal the given object to a
BytesMessage . |
protected Message |
MarshallingMessageConverter.marshalToMessage(Object object,
Session session,
Marshaller marshaller,
MessageType targetType)
Template method that allows for custom message marshalling.
|
protected TextMessage |
MarshallingMessageConverter.marshalToTextMessage(Object object,
Session session,
Marshaller marshaller)
Marshal the given object to a
TextMessage . |
void |
MarshallingMessageConverter.setMarshaller(Marshaller marshaller)
Set the
Marshaller to be used by this message converter. |
Constructor and Description |
---|
MarshallingMessageConverter(Marshaller marshaller)
Construct a new
MarshallingMessageConverter with the given Marshaller set. |
MarshallingMessageConverter(Marshaller marshaller,
Unmarshaller unmarshaller)
Construct a new
MarshallingMessageConverter with the
given Marshaller and Unmarshaller. |
Modifier and Type | Method and Description |
---|---|
Marshaller |
MarshallingMessageConverter.getMarshaller()
Return the configured Marshaller.
|
Modifier and Type | Method and Description |
---|---|
void |
MarshallingMessageConverter.setMarshaller(Marshaller marshaller)
Set the
Marshaller to be used by this message converter. |
Constructor and Description |
---|
MarshallingMessageConverter(Marshaller marshaller)
Constructor with
Marshaller . |
Modifier and Type | Interface and Description |
---|---|
interface |
GenericMarshaller
Subinterface of
Marshaller that has support for Java 5 generics. |
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
Deprecated.
as of Spring Framework 5.1.5, due to the lack of activity on the JiBX project
|
Modifier and Type | Interface and Description |
---|---|
interface |
MimeMarshaller
Subinterface of
Marshaller 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 | Method and Description |
---|---|
Marshaller |
MarshallingSource.getMarshaller()
Return the
Marshaller used by this MarshallingSource . |
Constructor and Description |
---|
MarshallingSource(Marshaller marshaller,
Object content)
Create a new
MarshallingSource with the given marshaller and content. |
Modifier and Type | Class and Description |
---|---|
class |
XStreamMarshaller
Implementation of the
Marshaller interface for XStream. |
Modifier and Type | Method and Description |
---|---|
void |
MarshallingView.setMarshaller(Marshaller marshaller)
Set the
Marshaller to be used by this view. |
Constructor and Description |
---|
MarshallingView(Marshaller marshaller)
Constructs a new
MarshallingView with the given Marshaller set. |