Reputation: 571
Can someone explain different ways of configuring message listener. I know two ways:
Are there any other ways (should be applicable to both IBM MQ and Active MQ)?
Upvotes: 0
Views: 191
Reputation: 3913
For the first question, your proposed ways are good ones with Camel JMS.
For the second question take a look at Java JMS mix messaging implementations
if you want to use the same client without changing anything you have to use AMQP ptotocol wich is designed for this.
here is 2 examples : ActiveMQ AMQP with JMS transformer leveraging spring Integration Unable to access ActiveMQ using JMS based code and amqp 1.0
Upvotes: 1