Class MessagingMessageListenerAdapter

java.lang.Object
org.springframework.jms.listener.adapter.AbstractAdaptableMessageListener
org.springframework.jms.listener.adapter.MessagingMessageListenerAdapter
All Implemented Interfaces:
MessageListener, SessionAwareMessageListener<Message>

public class MessagingMessageListenerAdapter extends AbstractAdaptableMessageListener
A MessageListener adapter that invokes a configurable InvocableHandlerMethod.

Wraps the incoming Message to Spring's Message abstraction, copying the JMS standard headers using a configurable JmsHeaderMapper.

The original Message and the Session are provided as additional arguments so that these can be injected as method arguments if necessary.

Since:
4.1
Author:
Stephane Nicoll
See Also:
  • Constructor Details

    • MessagingMessageListenerAdapter

      public MessagingMessageListenerAdapter()
  • Method Details

    • setHandlerMethod

      public void setHandlerMethod(org.springframework.messaging.handler.invocation.InvocableHandlerMethod handlerMethod)
      Set the InvocableHandlerMethod to use to invoke the method processing an incoming Message.
    • onMessage

      public void onMessage(Message jmsMessage, @Nullable Session session) throws JMSException
      Description copied from interface: SessionAwareMessageListener
      Callback for processing a received JMS message.

      Implementors are supposed to process the given Message, typically sending reply messages through the given Session.

      Specified by:
      onMessage in interface SessionAwareMessageListener<Message>
      Specified by:
      onMessage in class AbstractAdaptableMessageListener
      Parameters:
      jmsMessage - the received JMS message (never null)
      session - the underlying JMS Session (never null)
      Throws:
      JMSException - if thrown by JMS methods
    • preProcessResponse

      protected Object preProcessResponse(Object result)
      Description copied from class: AbstractAdaptableMessageListener
      Pre-process the given result before it is converted to a Message.
      Overrides:
      preProcessResponse in class AbstractAdaptableMessageListener
      Parameters:
      result - the result of the invocation
      Returns:
      the payload response to handle, either the result argument or any other object (for instance wrapping the result).
    • toMessagingMessage

      protected org.springframework.messaging.Message<?> toMessagingMessage(Message jmsMessage)