Package | Description |
---|---|
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.messaging.handler.annotation.support |
Support classes for working with annotated message-handling methods.
|
org.springframework.messaging.handler.invocation |
Common infrastructure for invoking message handler methods.
|
Modifier and Type | Method and Description |
---|---|
void |
MessagingMessageListenerAdapter.setHandlerMethod(InvocableHandlerMethod handlerMethod)
Set the
InvocableHandlerMethod to use to invoke the method
processing an incoming Message . |
Modifier and Type | Method and Description |
---|---|
InvocableHandlerMethod |
MessageHandlerMethodFactory.createInvocableHandlerMethod(Object bean,
Method method)
Create the
InvocableHandlerMethod that is able to process the specified
method endpoint. |
InvocableHandlerMethod |
DefaultMessageHandlerMethodFactory.createInvocableHandlerMethod(Object bean,
Method method) |
Modifier and Type | Method and Description |
---|---|
protected InvocableHandlerMethod |
AbstractMethodMessageHandler.getExceptionHandlerMethod(HandlerMethod handlerMethod,
Exception exception)
Find an
@MessageExceptionHandler method for the given exception. |