我有一个本机查询,可以批量插入 MySQL 数据库:
String sql = "insert into t1 (a, b) select x, y from t2 where x = 'foo'";
EntityTransaction tx = entityManager.getTransaction();
try {
tx.begin();
int rowCount = entityManager.createNativeQuery(sql).executeUpdate();
tx.commit();
return rowCount;
}
catch(Exception ex) {
tx.rollback();
log.error(...);
}
t2
此查询导致死锁:当它从with读取时insert .. select
,另一个进程尝试将一行插入t2
.
我不关心执行时读取的一致性,t2
并且insert .. select
想要将事务隔离级别设置为READ_UNCOMMITTED。
如何在 JPA 中设置它?
更新
所以我最终为这种情况创建了一个常规的 SQL 连接,因为在我看来这是最简单的选择。感谢大家!