我使用 Hibernate 4.1.10.Final 作为 jpa 提供者(带有 spring 容器),并且我尝试在持久化它之后更新一个 jpa 实体,但是每次我得到一个带有消息的 org.hibernate.StaleObjectStateException 时:Row was updated or deleted by another交易(或未保存的值映射不正确):...我的代码非常简单:
@Transactional
public void test() {
TestEntity e = new TestEntity();
e.setName("test");
......
em.persist(e);
......
e.setComment("memo...");
}
有什么问题吗?非常感谢您的帮助。