Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 struts 和 hibernate 开发一个 java web 应用程序。目前,我正在使用 Hibernate 的 Transaction 进行 hibernate 中的事务管理。与 Hibernate 事务相比,使用 JTA 事务划分有什么优势?更具体地说,建议什么时候使用 JTA ?
推荐使用JTA
无论您是否使用 JTA,我都建议您使用一个框架(Spring、EJB,...),让您以声明方式划分事务,而不是用代码划分它们。这确实使应用程序更加健壮和可维护。