Package | Description |
---|---|
org.springframework.jms.annotation |
Annotations and support classes for declarative JMS listener endpoints.
|
org.springframework.jms.config |
Support package for declarative messaging configuration,
with Java configuration and XML schema support.
|
org.springframework.messaging.handler.annotation.support |
Support classes for working with annotated message-handling methods.
|
Modifier and Type | Method and Description |
---|---|
void |
JmsListenerAnnotationBeanPostProcessor.setMessageHandlerMethodFactory(MessageHandlerMethodFactory messageHandlerMethodFactory)
Set the
MessageHandlerMethodFactory to use to configure the message
listener responsible to serve an endpoint detected by this processor. |
Modifier and Type | Method and Description |
---|---|
MessageHandlerMethodFactory |
JmsListenerEndpointRegistrar.getMessageHandlerMethodFactory()
Return the custom
MessageHandlerMethodFactory to use, if any. |
Modifier and Type | Method and Description |
---|---|
void |
JmsListenerEndpointRegistrar.setMessageHandlerMethodFactory(MessageHandlerMethodFactory messageHandlerMethodFactory)
Set the
MessageHandlerMethodFactory to use to configure the message
listener responsible to serve an endpoint detected by this processor. |
void |
MethodJmsListenerEndpoint.setMessageHandlerMethodFactory(MessageHandlerMethodFactory messageHandlerMethodFactory)
Set the
MessageHandlerMethodFactory to use to build the
InvocableHandlerMethod responsible to manage the invocation
of this endpoint. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultMessageHandlerMethodFactory
The default
MessageHandlerMethodFactory implementation creating an
InvocableHandlerMethod with the necessary
HandlerMethodArgumentResolver instances to detect and process
most of the use cases defined by
MessageMapping . |