public class MessageListenerAdapter extends Object implements MessageListener, SessionAwareMessageListener<Message>, SubscriptionNameProvider
By default, the content of incoming JMS messages gets extracted before
being passed into the target listener method, to let the target method
operate on message content types such as String or byte array instead of
the raw Message
. Message type conversion is delegated to a Spring
JMS MessageConverter
. By default, a SimpleMessageConverter
will be used. (If you do not want such automatic message conversion taking
place, then be sure to set the MessageConverter
to null
.)
If a target listener method returns a non-null object (typically of a
message content type such as String
or byte array), it will get
wrapped in a JMS Message
and sent to the response destination
(either the JMS "reply-to" destination or a
specified default
destination
).
Note: The sending of response messages is only available when
using the SessionAwareMessageListener
entry point (typically through a
Spring message listener container). Usage as standard JMS MessageListener
does not support the generation of response messages.
Find below some examples of method signatures compliant with this
adapter class. This first example handles all Message
types
and gets passed the contents of each Message
type as an
argument. No Message
will be sent back as all of these
methods return void
.
public interface MessageContentsDelegate { void handleMessage(String text); void handleMessage(Map map); void handleMessage(byte[] bytes); void handleMessage(Serializable obj); }This next example handles all
Message
types and gets
passed the actual (raw) Message
as an argument. Again, no
Message
will be sent back as all of these methods return
void
.
public interface RawMessageDelegate { void handleMessage(TextMessage message); void handleMessage(MapMessage message); void handleMessage(BytesMessage message); void handleMessage(ObjectMessage message); }This next example illustrates a
Message
delegate
that just consumes the String
contents of
TextMessages
. Notice also how the
name of the Message
handling method is different from the
original
(this will have to
be configured in the attandant bean definition). Again, no Message
will be sent back as the method returns void
.
public interface TextMessageContentDelegate { void onMessage(String text); }This final example illustrates a
Message
delegate
that just consumes the String
contents of
TextMessages
. Notice how the return type
of this method is String
: This will result in the configured
MessageListenerAdapter
sending a TextMessage
in response.
public interface ResponsiveTextMessageContentDelegate { String handleMessage(String text); }For further examples and discussion please do refer to the Spring reference documentation which describes this class (and it's attendant XML configuration) in detail.
setDelegate(java.lang.Object)
,
setDefaultListenerMethod(java.lang.String)
,
setDefaultResponseDestination(javax.jms.Destination)
,
setMessageConverter(org.springframework.jms.support.converter.MessageConverter)
,
SimpleMessageConverter
,
SessionAwareMessageListener
,
AbstractMessageListenerContainer.setMessageListener(java.lang.Object)
Modifier and Type | Field and Description |
---|---|
protected Log |
logger
Logger available to subclasses
|
static String |
ORIGINAL_DEFAULT_LISTENER_METHOD
Out-of-the-box value for the default listener method: "handleMessage".
|
Constructor and Description |
---|
MessageListenerAdapter()
Create a new
MessageListenerAdapter with default settings. |
MessageListenerAdapter(Object delegate)
Create a new
MessageListenerAdapter for the given delegate. |
Modifier and Type | Method and Description |
---|---|
protected Object[] |
buildListenerArguments(Object extractedMessage)
Build an array of arguments to be passed into the target listener method.
|
protected Message |
buildMessage(Session session,
Object result)
Build a JMS message to be sent as response based on the given result object.
|
protected Object |
extractMessage(Message message)
Extract the message body from the given JMS message.
|
protected String |
getDefaultListenerMethod()
Return the name of the default listener method to delegate to.
|
protected Object |
getDelegate()
Return the target object to delegate message listening to.
|
protected DestinationResolver |
getDestinationResolver()
Return the DestinationResolver for this adapter.
|
protected String |
getListenerMethodName(Message originalMessage,
Object extractedMessage)
Determine the name of the listener method that is supposed to
handle the given message.
|
protected MessageConverter |
getMessageConverter()
Return the converter that will convert incoming JMS messages to
listener method arguments, and objects returned from listener
methods back to JMS messages.
|
protected Destination |
getResponseDestination(Message request,
Message response,
Session session)
Determine a response destination for the given message.
|
String |
getSubscriptionName()
Determine the subscription name for this message listener object.
|
protected void |
handleListenerException(Throwable ex)
Handle the given exception that arose during listener execution.
|
protected void |
handleResult(Object result,
Message request,
Session session)
Handle the given result object returned from the listener method,
sending a response message back.
|
protected void |
initDefaultStrategies()
Initialize the default implementations for the adapter's strategies.
|
protected Object |
invokeListenerMethod(String methodName,
Object[] arguments)
Invoke the specified listener method.
|
void |
onMessage(Message message)
Standard JMS
MessageListener entry point. |
void |
onMessage(Message message,
Session session)
Spring
SessionAwareMessageListener entry point. |
protected void |
postProcessProducer(MessageProducer producer,
Message response)
Post-process the given message producer before using it to send the response.
|
protected void |
postProcessResponse(Message request,
Message response)
Post-process the given response message before it will be sent.
|
protected Destination |
resolveDefaultResponseDestination(Session session)
Resolve the default response destination into a JMS
Destination , using this
accessor's DestinationResolver in case of a destination name. |
protected void |
sendResponse(Session session,
Destination destination,
Message response)
Send the given response message to the given destination.
|
void |
setDefaultListenerMethod(String defaultListenerMethod)
Specify the name of the default listener method to delegate to,
for the case where no specific listener method has been determined.
|
void |
setDefaultResponseDestination(Destination destination)
Set the default destination to send response messages to.
|
void |
setDefaultResponseQueueName(String destinationName)
Set the name of the default response queue to send response messages to.
|
void |
setDefaultResponseTopicName(String destinationName)
Set the name of the default response topic to send response messages to.
|
void |
setDelegate(Object delegate)
Set a target object to delegate message listening to.
|
void |
setDestinationResolver(DestinationResolver destinationResolver)
Set the DestinationResolver that should be used to resolve response
destination names for this adapter.
|
void |
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.
|
public static final String ORIGINAL_DEFAULT_LISTENER_METHOD
protected final Log logger
public MessageListenerAdapter()
MessageListenerAdapter
with default settings.public MessageListenerAdapter(Object delegate)
MessageListenerAdapter
for the given delegate.delegate
- the delegate objectpublic void setDelegate(Object delegate)
If no explicit delegate object has been specified, listener methods are expected to present on this adapter instance, that is, on a custom subclass of this adapter, defining listener methods.
protected Object getDelegate()
public void setDefaultListenerMethod(String defaultListenerMethod)
"handleMessage"
.protected String getDefaultListenerMethod()
public void setDefaultResponseDestination(Destination destination)
Response destinations are only relevant for listener methods that return result objects, which will be wrapped in a response message and sent to a response destination.
Alternatively, specify a "defaultResponseQueueName" or "defaultResponseTopicName", to be dynamically resolved via the DestinationResolver.
public void setDefaultResponseQueueName(String destinationName)
Alternatively, specify a JMS Destination object as "defaultResponseDestination".
public void setDefaultResponseTopicName(String destinationName)
Alternatively, specify a JMS Destination object as "defaultResponseDestination".
public void setDestinationResolver(DestinationResolver destinationResolver)
The default resolver is a DynamicDestinationResolver. Specify a JndiDestinationResolver for resolving destination names as JNDI locations.
protected DestinationResolver getDestinationResolver()
public void setMessageConverter(MessageConverter messageConverter)
The default converter is a SimpleMessageConverter
, which is able
to handle BytesMessages
,
TextMessages
and
ObjectMessages
.
protected MessageConverter getMessageConverter()
public void onMessage(Message message)
MessageListener
entry point.
Delegates the message to the target listener method, with appropriate
conversion of the message argument. In case of an exception, the
handleListenerException(Throwable)
method will be invoked.
Note: Does not support sending response messages based on
result objects returned from listener methods. Use the
SessionAwareMessageListener
entry point (typically through a Spring
message listener container) for handling result objects as well.
onMessage
in interface MessageListener
message
- the incoming JMS messagehandleListenerException(java.lang.Throwable)
,
onMessage(javax.jms.Message, javax.jms.Session)
public void onMessage(Message message, Session session) throws JMSException
SessionAwareMessageListener
entry point.
Delegates the message to the target listener method, with appropriate conversion of the message argument. If the target method returns a non-null object, wrap in a JMS message and send it back.
onMessage
in interface SessionAwareMessageListener<Message>
message
- the incoming JMS messagesession
- the JMS session to operate onJMSException
- if thrown by JMS API methodspublic String getSubscriptionName()
SubscriptionNameProvider
getSubscriptionName
in interface SubscriptionNameProvider
protected void initDefaultStrategies()
protected void handleListenerException(Throwable ex)
This method only applies when used as standard JMS MessageListener
.
In case of the Spring SessionAwareMessageListener
mechanism,
exceptions get handled by the caller instead.
ex
- the exception to handleonMessage(javax.jms.Message)
protected Object extractMessage(Message message) throws JMSException
message
- the JMS Message
JMSException
- if thrown by JMS API methodsprotected String getListenerMethodName(Message originalMessage, Object extractedMessage) throws JMSException
The default implementation simply returns the configured default listener method, if any.
originalMessage
- the JMS request messageextractedMessage
- the converted JMS request message,
to be passed into the listener method as argumentnull
)JMSException
- if thrown by JMS API methodssetDefaultListenerMethod(java.lang.String)
protected Object[] buildListenerArguments(Object extractedMessage)
The default implementation builds an array with the given message object as sole element. This means that the extracted message will always be passed into a single method argument, even if it is an array, with the target method having a corresponding single argument of the array's type declared.
This can be overridden to treat special message content such as arrays differently, for example passing in each element of the message array as distinct method argument.
extractedMessage
- the content of the messageprotected Object invokeListenerMethod(String methodName, Object[] arguments) throws JMSException
methodName
- the name of the listener methodarguments
- the message arguments to be passed inJMSException
- if thrown by JMS API methodsgetListenerMethodName(javax.jms.Message, java.lang.Object)
,
buildListenerArguments(java.lang.Object)
protected void handleResult(Object result, Message request, Session session) throws JMSException
result
- the result object to handle (never null
)request
- the original request messagesession
- the JMS Session to operate on (may be null
)JMSException
- if thrown by JMS API methodsbuildMessage(javax.jms.Session, java.lang.Object)
,
postProcessResponse(javax.jms.Message, javax.jms.Message)
,
getResponseDestination(javax.jms.Message, javax.jms.Message, javax.jms.Session)
,
sendResponse(javax.jms.Session, javax.jms.Destination, javax.jms.Message)
protected Message buildMessage(Session session, Object result) throws JMSException
session
- the JMS Session to operate onresult
- the content of the message, as returned from the listener methodMessage
(never null
)JMSException
- if thrown by JMS API methodssetMessageConverter(org.springframework.jms.support.converter.MessageConverter)
protected void postProcessResponse(Message request, Message response) throws JMSException
The default implementation sets the response's correlation id to the request message's correlation id, if any; otherwise to the request message id.
request
- the original incoming JMS messageresponse
- the outgoing JMS message about to be sentJMSException
- if thrown by JMS API methodsMessage.setJMSCorrelationID(java.lang.String)
protected Destination getResponseDestination(Message request, Message response, Session session) throws JMSException
The default implementation first checks the JMS Reply-To
Destination
of the supplied request; if that is not null
it is returned; if it is null
, then the configured
default response destination
is returned; if this too is null
, then an
InvalidDestinationException
is thrown.
request
- the original incoming JMS messageresponse
- the outgoing JMS message about to be sentsession
- the JMS Session to operate onnull
)JMSException
- if thrown by JMS API methodsInvalidDestinationException
- if no Destination
can be determinedsetDefaultResponseDestination(javax.jms.Destination)
,
Message.getJMSReplyTo()
protected Destination resolveDefaultResponseDestination(Session session) throws JMSException
Destination
, using this
accessor's DestinationResolver
in case of a destination name.Destination
JMSException
- if resolution failedsetDefaultResponseDestination(javax.jms.Destination)
,
setDefaultResponseQueueName(java.lang.String)
,
setDefaultResponseTopicName(java.lang.String)
,
setDestinationResolver(org.springframework.jms.support.destination.DestinationResolver)
protected void sendResponse(Session session, Destination destination, Message response) throws JMSException
response
- the JMS message to senddestination
- the JMS destination to send tosession
- the JMS session to operate onJMSException
- if thrown by JMS API methodspostProcessProducer(javax.jms.MessageProducer, javax.jms.Message)
,
Session.createProducer(javax.jms.Destination)
,
MessageProducer.send(javax.jms.Message)
protected void postProcessProducer(MessageProducer producer, Message response) throws JMSException
The default implementation is empty.
producer
- the JMS message producer that will be used to send the messageresponse
- the outgoing JMS message about to be sentJMSException
- if thrown by JMS API methods