You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

How do I make my JMS endpoint transactional

I have a JMS route such as this...

from("activemq:Some.Queue").
  bean(MyProcessor.class);

how do I make it transactional?

Answer

There are examples in the Transactional Client and it is described in the Enabling Transacted Consumption section of JMS. Basically you enable the transacted flag on the JMS endpoint and set a transactionManager on the Component or Endpoint

See Also

  • No labels