我是hibernate的新手。我有一个HibernateException失败的事务,但在提交后表被更改。这是代码:
public StoreResult store(Entry entry)
{
Session session = HibernateUtility.getSessionFactory().openSession();
Transaction transaction = session.beginTransaction();
try
{
String id;
if (entry.getStatus() == Entry.Status.PUBLISHED)
{
id = TitleToURLConverter.convert(entry.getTitle());
}
else
{
id = "temp_";
}
if (entry.getId() == null)
{
entry.setId(id);
session.save(entry);
}
else
{
session.update(entry);
session.createQuery("update Entry set id = :newId where id = :oldId")
.setString("newId", id)
.setString("oldId", entry.getId())
.executeUpdate();
session.refresh(entry);
}
transaction.commit();
return StoreResult.SUCCESS;
}
catch (RuntimeException e)
{
transaction.rollback();
if (e instanceof ConstraintViolationException) return StoreResult.DUPLICATE_ID;
throw e;
}
finally
{
session.close();
}
}
编辑:显然,InnoDB不会在重复键错误上回滚事务,而只回滚语句。我希望事务总是在任何错误上回滚。
EDIT2:忽略这一点。我在使用MyIsam。
答案 0 :(得分:1)
从MyIsam切换到InnoDB修复此问题。