我正在使用Hibernate 3.6.6和Sping 3.0.4 添加后
@org.hibernate.annotations.Entity(optimisticLock=OptimisticLockType.ALL, dynamicUpdate=true)
到我的bean并运行以下testcase
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,相同的设置工作正常。