public class JmsListenerEndpointRegistrar extends Object implements org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.InitializingBean
JmsListenerEndpoint with a JmsListenerEndpointRegistry.JmsListenerConfigurer| Constructor and Description |
|---|
JmsListenerEndpointRegistrar() |
| Modifier and Type | Method and Description |
|---|---|
void |
afterPropertiesSet() |
JmsListenerEndpointRegistry |
getEndpointRegistry()
Return the
JmsListenerEndpointRegistry instance for this
registrar, may be null. |
org.springframework.messaging.handler.annotation.support.MessageHandlerMethodFactory |
getMessageHandlerMethodFactory()
Return the custom
MessageHandlerMethodFactory to use, if any. |
protected void |
registerAllEndpoints() |
void |
registerEndpoint(JmsListenerEndpoint endpoint)
Register a new
JmsListenerEndpoint using the default
JmsListenerContainerFactory to create the underlying container. |
void |
registerEndpoint(JmsListenerEndpoint endpoint,
JmsListenerContainerFactory<?> factory)
Register a new
JmsListenerEndpoint alongside the
JmsListenerContainerFactory to use to create the underlying container. |
void |
setBeanFactory(org.springframework.beans.factory.BeanFactory beanFactory)
A
BeanFactory only needs to be available in conjunction with
setContainerFactoryBeanName(java.lang.String). |
void |
setContainerFactory(JmsListenerContainerFactory<?> containerFactory)
Set the
JmsListenerContainerFactory to use in case a JmsListenerEndpoint
is registered with a null container factory. |
void |
setContainerFactoryBeanName(String containerFactoryBeanName)
Set the bean name of the
JmsListenerContainerFactory to use in case
a JmsListenerEndpoint is registered with a null container factory. |
void |
setEndpointRegistry(JmsListenerEndpointRegistry endpointRegistry)
Set the
JmsListenerEndpointRegistry instance to use. |
void |
setMessageHandlerMethodFactory(org.springframework.messaging.handler.annotation.support.MessageHandlerMethodFactory messageHandlerMethodFactory)
Set the
MessageHandlerMethodFactory to use to configure the message
listener responsible to serve an endpoint detected by this processor. |
public void setEndpointRegistry(@Nullable
JmsListenerEndpointRegistry endpointRegistry)
JmsListenerEndpointRegistry instance to use.@Nullable public JmsListenerEndpointRegistry getEndpointRegistry()
JmsListenerEndpointRegistry instance for this
registrar, may be null.public void setMessageHandlerMethodFactory(@Nullable
org.springframework.messaging.handler.annotation.support.MessageHandlerMethodFactory messageHandlerMethodFactory)
MessageHandlerMethodFactory to use to configure the message
listener responsible to serve an endpoint detected by this processor.
By default, DefaultMessageHandlerMethodFactory is used and it
can be configured further to support additional method arguments
or to customize conversion and validation support. See
DefaultMessageHandlerMethodFactory javadoc for more details.
@Nullable public org.springframework.messaging.handler.annotation.support.MessageHandlerMethodFactory getMessageHandlerMethodFactory()
MessageHandlerMethodFactory to use, if any.public void setContainerFactory(JmsListenerContainerFactory<?> containerFactory)
JmsListenerContainerFactory to use in case a JmsListenerEndpoint
is registered with a null container factory.
Alternatively, the bean name of the JmsListenerContainerFactory to use
can be specified for a lazy lookup, see setContainerFactoryBeanName(java.lang.String).
public void setContainerFactoryBeanName(String containerFactoryBeanName)
JmsListenerContainerFactory to use in case
a JmsListenerEndpoint is registered with a null container factory.
Alternatively, the container factory instance can be registered directly:
see setContainerFactory(JmsListenerContainerFactory).public void setBeanFactory(org.springframework.beans.factory.BeanFactory beanFactory)
BeanFactory only needs to be available in conjunction with
setContainerFactoryBeanName(java.lang.String).setBeanFactory in interface org.springframework.beans.factory.BeanFactoryAwarepublic void afterPropertiesSet()
afterPropertiesSet in interface org.springframework.beans.factory.InitializingBeanprotected void registerAllEndpoints()
public void registerEndpoint(JmsListenerEndpoint endpoint, @Nullable JmsListenerContainerFactory<?> factory)
JmsListenerEndpoint alongside the
JmsListenerContainerFactory to use to create the underlying container.
The factory may be null if the default factory has to be
used for that endpoint.
public void registerEndpoint(JmsListenerEndpoint endpoint)
JmsListenerEndpoint using the default
JmsListenerContainerFactory to create the underlying container.