We have an application which creates some data in the database usingand looks up for this data withCode:HibernateTemplate.persist(..)later within the same transaction.Code:HibernateTemplate.find(..)
Everything works fine using the.Code:org.springframework.orm.hibernate3.HibernateTransactionManager
If we change the transactionmanager tothe find operation will not find the inserted record.Code:org.springframework.transaction.jta.JtaTransactionManager
What else do I have to configure to use JTA transactions whith Hibernate?
(Spring 2.0, Hibernate 3.2.0.cr4, JBoss 4.0.5.GA)


Reply With Quote