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.
我知道 Hibernate 默认使用透明写入来提交事务。
但是,我希望我的实体管理器在事务提交后立即在数据库上提交我的事务。无论如何我可以在 JPA 的 persistence.xml 中配置它吗?
Hibernate 在提交事务时必须在数据库中提交。您还会发现有两个附加选项很有帮助:
定义会话和自动提交(在连接的属性中输入属性“hibernate.connection.autocommit”)
在事务中间强制hibernate事务与数据库事务同步(通过session.flush())
问候,