Package | Description |
---|---|
org.springframework.jms.core |
Core package of the JMS support.
|
org.springframework.jms.listener.adapter |
Message listener adapter mechanism that delegates to target listener
methods, converting messages to appropriate message content types
(such as String or byte array) that get passed into listener methods.
|
org.springframework.jms.remoting |
Remoting classes for transparent Java-to-Java remoting via a JMS provider.
|
org.springframework.jms.support.converter |
Provides a MessageConverter abstraction to convert
between Java objects and JMS messages.
|
Modifier and Type | Method and Description |
---|---|
MessageConverter |
JmsTemplate.getMessageConverter()
Return the message converter for this template.
|
Modifier and Type | Method and Description |
---|---|
void |
JmsTemplate.setMessageConverter(MessageConverter messageConverter)
Set the message converter for this template.
|
Modifier and Type | Method and Description |
---|---|
protected MessageConverter |
MessageListenerAdapter.getMessageConverter()
Return the converter that will convert incoming JMS messages to
listener method arguments, and objects returned from listener
methods back to JMS messages.
|
Modifier and Type | Method and Description |
---|---|
void |
MessageListenerAdapter.setMessageConverter(MessageConverter messageConverter)
Set the converter that will convert incoming JMS messages to
listener method arguments, and objects returned from listener
methods back to JMS messages.
|
Modifier and Type | Method and Description |
---|---|
void |
JmsInvokerClientInterceptor.setMessageConverter(MessageConverter messageConverter)
Specify the MessageConverter to use for turning
RemoteInvocation
objects into request messages, as well as response messages into
RemoteInvocationResult objects. |
void |
JmsInvokerServiceExporter.setMessageConverter(MessageConverter messageConverter)
Specify the MessageConverter to use for turning request messages into
RemoteInvocation objects,
as well as RemoteInvocationResult
objects into response messages. |
Modifier and Type | Class and Description |
---|---|
class |
MappingJackson2MessageConverter
Message converter that uses the Jackson 2 library to convert messages to and from JSON.
|
class |
MappingJacksonMessageConverter
Message converter that uses Jackson 1.x to convert messages to and from JSON.
|
class |
MarshallingMessageConverter
|
class |
SimpleMessageConverter
A simple message converter which is able to handle TextMessages, BytesMessages,
MapMessages, and ObjectMessages.
|
class |
SimpleMessageConverter102
Deprecated.
as of Spring 3.0, in favor of the JMS 1.1 based
SimpleMessageConverter |
Copyright © 2015. All rights reserved.