我正在使用 Hibernate 3.6.6 和 Sping 3.0.4 添加后
@org.hibernate.annotations.Entity(optimisticLock=OptimisticLockType.ALL, dynamicUpdate=true)
到我的 bean 并运行以下测试用例
SSNConceptDAO conceptDao = (SSNConceptDAO)Context.getBean("conceptDAO");
SSNConcept ssnConcept = conceptDao.findById(9000000612l);
ssnConcept.setEditornote("Editor Note at "+System.currentTimeMillis());
conceptDao.update(ssnConcept);
Hibernate 不要在更新语句中添加适当的 WHERE 子句
但是在另一个应用程序中,我只使用没有 Spring 的 Hibernate,相同的设置工作得很好。