I have a requirement to configure a DefaultMessageListenerContainer to resolve multiple destination topics. I don't want to instanciate multiple containers and I was wondering how to configure this or even if it is possible.
Thanks
|
I have a requirement to configure a DefaultMessageListenerContainer to resolve multiple destination topics. I don't want to instanciate multiple containers and I was wondering how to configure this or even if it is possible. Thanks | |||
|
feedback
|
|
If you wish to listen for messages from multiple topics using straight Spring JMS, you will need to create multiple instances of this class. The only issue is that by default each will creates its own TaskExecutor, which is a little bit wasteful. To get around this simply define your own Here is a task executor which works well in a standalone VM, there are alternative implementations which integrate with different containers' native work manager / thread pool capabilities.
Alternatively, using Spring Integration, simply create a message channel and multiple
Behind the scenes, Spring Integration will automatically create a MessageListenerContainer. Yet another alternative would be to use the routing facilities of your JMS provider/MOM to create a single destination where all relevant messages are routed. E.g. in RabbitMQ you can create a topic which is bound to multiple exchanges, and thus only one AMQP destination to consume. This is infrastructure dependent however, and will not be possible with any given JMS provider. | |||
|
feedback
|