Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

How do I make my JMS endpoint transactional

I have a JMS route such as this...

Code Block
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