Learner
Learner

Reputation: 571

Multiple ways to configure MQ or ActiveMQ Listener

Can someone explain different ways of configuring message listener. I know two ways:

  1. Spring Jms Listener
  2. EJB MDB way.

Are there any other ways (should be applicable to both IBM MQ and Active MQ)?

Upvotes: 0

Views: 191

Answers (1)

Hassen Bennour
Hassen Bennour

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

Related Questions