我正在使用hibernate jpa来执行批量更新。
它没有给出任何错误或异常,但每次给予事务都会回滚。
2015-04-21 16:30:33,548 ERROR [org.jboss.as.ejb3] (Thread-344 (HornetQ-client-global-threads-462057890)) javax.ejb.EJBTransactionRolledbackException: no transaction is in progress
这是我的批量更新代码
getEm().getTransaction().begin();
System.out.println("transaction started--------------");
try{
for(Receipt ReceiptEntity : arrReceiptEntity){
getEm().persist(ReceiptEntity);
}
getEm().getTransaction().commit();
System.out.println("commited");
}catch(Exception exception){
System.out.println("error----------------------------------------------------------------------");
if(getEm().getTransaction().isActive())
getEm().getTransaction().rollback();
LOG.error(exception);
}finally
{
getEm().flush();
getEm().clear();
getEm().close();
}
我正在使用Postgres服务器9.4.1 请帮我弄清楚我做错了什么。 我检查了其他类似的帖子,但没有任何帮助。
更新: 我得到了解决方案: 问题是我正在刷新已经刷新的事务。因此它给了我没有进行中的事务错误以及我在上面发布的那个。所以我刚刚删除了`getEm()。flush();和getEm()。clear();从finally块开始工作:)
答案 0 :(得分:0)
我得到了解决方案:问题是我正在刷新已经刷新的事务。因此它给了我没有进行中的事务错误以及我在上面发布的那个。所以我刚刚删除了getEm().flush(); and getEm().clear();
终于阻止它开始工作了:))
希望它能帮助别人..