| 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.listener.endpoint | This package provides JCA-based endpoint management for JMS message listeners. |
| org.springframework.jms.listener.serversession | This package contains the ServerSessionMessageListenerContainer implementation, based on the standard JMS ServerSessionPool API. |
| SessionAwareMessageListener | Variant of the standard JMS javax.jms.MessageListener interface, offering not only the received Message but also the underlying JMS Session object. | code | html |
| AbstractJmsListeningContainer | Common base class for all containers which need to implement listening based on a JMS Connection (either shared or freshly obtained for each attempt). | code | html |
| AbstractMessageListenerContainer | Abstract base class for message listener containers. | code | html |
| AbstractPollingMessageListenerContainer | Base class for listener container implementations which are based on polling. | code | html |
| AbstractJmsListeningContainer.SharedConnectionNotInitializedException | Exception that indicates that the initial setup of this container's shared JMS Connection failed. | code | html |
| AbstractMessageListenerContainer.MessageRejectedWhileStoppingException | Internal exception class that indicates a rejected message on shutdown. | code | html |
| AbstractPollingMessageListenerContainer.MessageListenerContainerResourceFactory | ResourceFactory implementation that delegates to this listener container's protected callback methods. | code | html |
| DefaultMessageListenerContainer | Message listener container variant that uses plain JMS client API, specifically
a loop of MessageConsumer.receive() calls that also allow for
transactional reception of messages (registering them with XA transactions). |
code | html |
| DefaultMessageListenerContainer.AsyncMessageListenerInvoker | Runnable that performs looped MessageConsumer.receive() calls. |
code | html |
| DefaultMessageListenerContainer102 | A subclass of DefaultMessageListenerContainer for the JMS 1.0.2 specification, not relying on JMS 1.1 methods like SimpleMessageListenerContainer itself. | code | html |
| LocallyExposedJmsResourceHolder | JmsResourceHolder marker subclass that indicates local exposure, i.e. | code | html |
| SimpleMessageListenerContainer | Message listener container that uses the plain JMS client API's
MessageConsumer.setMessageListener() method to
create concurrent MessageConsumers for the specified listeners. |
code | html |
| SimpleMessageListenerContainer102 | A subclass of SimpleMessageListenerContainer for the JMS 1.0.2 specification, not relying on JMS 1.1 methods like SimpleMessageListenerContainer itself. | code | html |