On Wed, Aug 3, 2011 at 4:37 PM, Larry Meadors <[email protected]> wrote: > On Wed, Aug 3, 2011 at 8:31 AM, Claus Ibsen <[email protected]> wrote: >> Yeah the Camel transactional support uses Spring Transaction. >> So you need to setup such one. >> >> What transaction manager are you using? > > Thanks Claus - I'm not yet, this is a brand new project and I'm pretty > new to camel as well. > > I will be using both JMS and JDBC (via mybatis) on this project. Is > there a transaction manger interface I can implement an plug-in > somehow? > > Any and all advice is appreciated. :) >
The transaction integration logic is in camel-spring in the TransactionErrorHandler. And its using the Spring transaction template to execute the work inside a transaction. So if you can hook into Spring transaction then you should be all good. That said. We may want in the future to support non spring as well. But I wonder if there is other projects that have done that. And what kind of API they are using? > Larry > -- Claus Ibsen ----------------- FuseSource Email: [email protected] Web: http://fusesource.com Twitter: davsclaus, fusenews Blog: http://davsclaus.blogspot.com/ Author of Camel in Action: http://www.manning.com/ibsen/
