添加动态数量的侦听器(Spring JMS)
Adding Dynamic Number of Listeners(Spring JMS)
我需要添加 application.properties
文件中提到的多个侦听器。喜欢下面,
InTopics=Sample.QUT4,Sample.T05,Sample.T01,Sample.JT7
注意:这个数字可以多也可以少很多。
我正在考虑将它们放在一个数组中,
@Value("${InTopics}")
private String[] inTopics;
但我不知道如何从数组创建多个监听器。
目前,我正在做的一个主题如下,
@Configuration
@EnableJms
public class JmsConfiguration {
@Value("${BrokerURL}")
private String brokerURL;
@Value("${BrokerUserName}")
private String brokerUserName;
@Value("${BrokerPassword}")
private String brokerPassword;
@Bean
TopicConnectionFactory connectionFactory() throws JMSException {
TopicConnectionFactory connectionFactory = new TopicConnectionFactory(brokerURL, brokerUserName, brokerPassword);
return connectionFactory;
}
@Bean
JmsListenerContainerFactory<?> jmsContainerFactory(TopicConnectionFactory connectionFactory) throws JMSException {
SimpleJmsListenerContainerFactory factory = new SimpleJmsListenerContainerFactory();
factory.setConnectionFactory(connectionFactory);
factory.setPubSubDomain(Boolean.TRUE);
return factory;
}
}
还有我的听众,
@JmsListener(destination = "${SingleTopicName}", containerFactory = "jmsContainerFactory")
public void receiveMessage(Message msg) {
//Do Some Stuff
}
有什么办法可以实现吗?
您不能使用带注释的 @JmsListener
来完成此操作,但您可以通过编程方式注册每个侦听器 by extending JmsListenerConfigurer
as described in the reference documentation。
编辑
由于您将 属性 作为数组注入...
@Value("${InTopics}")
private String[] inTopics;
Spring 将拆分列表并根据列表中的队列数创建一个数组。
然后您可以遍历 JmsListenerConfigurer.configureJmsListeners()
中的数组并为数组中的每个元素创建一个端点 - 您不需要提前知道数组有多大。
for (String inTopic : inTopics) {
...
}
这里是动态定义监听器数量的自定义代码。
JmsConfiguration jmsConfiguration;
private List<String> queueList;
@Bean
public DefaultJmsListenerContainerFactory mqJmsListenerContainerFactory() throws JMSException {
DefaultJmsListenerContainerFactory factory = new DefaultJmsListenerContainerFactory();
factory.setConnectionFactory(jmsConfiguration.jmsConnectionFactory());
factory.setDestinationResolver(new DynamicDestinationResolver());
factory.setSessionTransacted(true);
factory.setConcurrency("5");
return factory;
}
@Override
public void configureJmsListeners(JmsListenerEndpointRegistrar registrar) {
queueList.forEach(queue -> {
SimpleJmsListenerEndpoint endpoint = new SimpleJmsListenerEndpoint();
endpoint.setId(queue);
endpoint.setDestination(queue);
try {
endpoint.setMessageListener(message -> {
try {
logger.info("Receieved ID: {} Destination {}", message.getJMSMessageID(), message.getJMSDestination());
}
catch (JMSException e) {
logger.info("Exception while reading message - " + e);
}
});
registrar.setContainerFactory(mqJmsListenerContainerFactory());
}
catch (JMSException e) {
logger.info("Exception - " + e);
}
registrar.registerEndpoint(endpoint);
});
}
我不知道这是存在的,我不得不手动写下所有这些代码。因此,另一种方法是在您的 bean 中实现 BeanFactoryPostProcessor
并手动添加 jms 侦听器的所有必需组件。
jndiTemplate
jndiQueueConnectionFactory
(取决于步骤 1 中的 jndiTemplate)
queueConnectionFactory
(取决于步骤 2 中的 jndiQueueConnectionFactory)
jndiDestinationResolver
(使用 stem 1 中的 jndiTemplate)
messageListenerContiner
(使用上面创建的所有项目)
因此,如您所见,我不仅增加了 jms 侦听器,而且还动态生成了多个侦听器容器。 Ofc,这是我的要求。并且可能会因要求而异。
要记住的一件事是,在您操作 BeanFactoryPostProcessor
时没有资源(如加载的属性等)。您必须手动加载属性。我通过 afterPropertiesSet
方法来自 InitializingBean
我需要添加 application.properties
文件中提到的多个侦听器。喜欢下面,
InTopics=Sample.QUT4,Sample.T05,Sample.T01,Sample.JT7
注意:这个数字可以多也可以少很多。
我正在考虑将它们放在一个数组中,
@Value("${InTopics}")
private String[] inTopics;
但我不知道如何从数组创建多个监听器。
目前,我正在做的一个主题如下,
@Configuration
@EnableJms
public class JmsConfiguration {
@Value("${BrokerURL}")
private String brokerURL;
@Value("${BrokerUserName}")
private String brokerUserName;
@Value("${BrokerPassword}")
private String brokerPassword;
@Bean
TopicConnectionFactory connectionFactory() throws JMSException {
TopicConnectionFactory connectionFactory = new TopicConnectionFactory(brokerURL, brokerUserName, brokerPassword);
return connectionFactory;
}
@Bean
JmsListenerContainerFactory<?> jmsContainerFactory(TopicConnectionFactory connectionFactory) throws JMSException {
SimpleJmsListenerContainerFactory factory = new SimpleJmsListenerContainerFactory();
factory.setConnectionFactory(connectionFactory);
factory.setPubSubDomain(Boolean.TRUE);
return factory;
}
}
还有我的听众,
@JmsListener(destination = "${SingleTopicName}", containerFactory = "jmsContainerFactory")
public void receiveMessage(Message msg) {
//Do Some Stuff
}
有什么办法可以实现吗?
您不能使用带注释的 @JmsListener
来完成此操作,但您可以通过编程方式注册每个侦听器 by extending JmsListenerConfigurer
as described in the reference documentation。
编辑
由于您将 属性 作为数组注入...
@Value("${InTopics}")
private String[] inTopics;
Spring 将拆分列表并根据列表中的队列数创建一个数组。
然后您可以遍历 JmsListenerConfigurer.configureJmsListeners()
中的数组并为数组中的每个元素创建一个端点 - 您不需要提前知道数组有多大。
for (String inTopic : inTopics) {
...
}
这里是动态定义监听器数量的自定义代码。
JmsConfiguration jmsConfiguration;
private List<String> queueList;
@Bean
public DefaultJmsListenerContainerFactory mqJmsListenerContainerFactory() throws JMSException {
DefaultJmsListenerContainerFactory factory = new DefaultJmsListenerContainerFactory();
factory.setConnectionFactory(jmsConfiguration.jmsConnectionFactory());
factory.setDestinationResolver(new DynamicDestinationResolver());
factory.setSessionTransacted(true);
factory.setConcurrency("5");
return factory;
}
@Override
public void configureJmsListeners(JmsListenerEndpointRegistrar registrar) {
queueList.forEach(queue -> {
SimpleJmsListenerEndpoint endpoint = new SimpleJmsListenerEndpoint();
endpoint.setId(queue);
endpoint.setDestination(queue);
try {
endpoint.setMessageListener(message -> {
try {
logger.info("Receieved ID: {} Destination {}", message.getJMSMessageID(), message.getJMSDestination());
}
catch (JMSException e) {
logger.info("Exception while reading message - " + e);
}
});
registrar.setContainerFactory(mqJmsListenerContainerFactory());
}
catch (JMSException e) {
logger.info("Exception - " + e);
}
registrar.registerEndpoint(endpoint);
});
}
我不知道这是存在的,我不得不手动写下所有这些代码。因此,另一种方法是在您的 bean 中实现 BeanFactoryPostProcessor
并手动添加 jms 侦听器的所有必需组件。
jndiTemplate
jndiQueueConnectionFactory
(取决于步骤 1 中的 jndiTemplate)queueConnectionFactory
(取决于步骤 2 中的 jndiQueueConnectionFactory)jndiDestinationResolver
(使用 stem 1 中的 jndiTemplate)messageListenerContiner
(使用上面创建的所有项目)
因此,如您所见,我不仅增加了 jms 侦听器,而且还动态生成了多个侦听器容器。 Ofc,这是我的要求。并且可能会因要求而异。
要记住的一件事是,在您操作 BeanFactoryPostProcessor
时没有资源(如加载的属性等)。您必须手动加载属性。我通过 afterPropertiesSet
方法来自 InitializingBean