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.
|
Java Source File Name | Type | Comment |
ListenerExecutionFailedException.java | Class | Exception to be thrown when the execution of a listener method failed. |
MessageListenerAdapter.java | Class | Message listener adapter that delegates the handling of messages to target
listener methods via reflection, with flexible message type conversion.
Allows listener methods to operate on message content types, completely
independent from the JMS API.
NOTE: This class requires a JMS 1.1+ provider, because it builds
on the domain-independent API. |
MessageListenerAdapter102.java | Class | A
MessageListenerAdapter subclass for the JMS 1.0.2 specification,
not relying on JMS 1.1 methods like MessageListenerAdapter itself. |