How do I make my JMS endpoint transactionalI have a JMS route such as this...
from("activemq:Some.Queue").
bean(MyProcessor.class);
how do I make it transactional? AnswerThere 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 |