春天 + Hibernate +JTA - HibernateTransactionManager 或 JTATransactionManager
我想集成Spring和Hibernate并使用JTA来管理事务。我还想将事务处理委托给应用程序服务器,在我的例子中是 JBoss。我对 Spring 中“transactionManager”bean 的配置有疑问:
1) 我们可以使用 HibernateTransactionManager 并设置属性 hibernate.transaction.factory_class< hibernate.properties 文件中的 /strong> 和 hibernate.transaction.manager_lookup_class ? 如果没有,为什么?
2)或者,我们应该使用JTATransactionManager吗?
在选项(2)中,我们还需要在hibernate.properties中设置properties("hibernate.transaction.factory_class", "hibernate.transaction.manager_lookup_class")吗?
谢谢。
I want to Integrate Spring and Hibernate and use JTA for managing the transactions. I would also like to delegate transaction handling to the App server, which in my case is JBoss. I have a query regarding the configuration of the "transactionManager" bean in Spring:
1) Can we use HibernateTransactionManager and set the the properties hibernate.transaction.factory_class and hibernate.transaction.manager_lookup_class in hibernate.properties file?
If not, why?
2) Or, should we use JTATransactionManager?
In option (2), do we still need to set the properties("hibernate.transaction.factory_class", "hibernate.transaction.manager_lookup_class") in hibernate.properties?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想委托给应用程序服务器,据我所知,你必须使用 JTATransactionManager,HibernateTransactionManager 不是 JTA 事务管理器。
If you want to delegate to the appserver, you have to use JTATransactionManager to my knowledge, HibernateTransactionManager is not a JTA transaction manager.