org.hibernate.StaleStateException: Unexpected row count: 0 expected: 1

org.hibernate.StaleStateException: Unexpected row count: 0 expected: 1

1). 使用的是hibernate的saveOrUpdate方法保存实例。saveOrUpdate方法要求ID为null时才执行SAVE,在其它情况下执行UPDATE。在保存实例的时候是新增,但你的ID不为null,所以使用的是UPDATE,但是数据库里没有主键相关的值,所以出现异常。


=================================================================

异常:
在插入时:
org.hibernate.StaleStateException: Batch update returned unexpected row count from update: 0 actual row count: 0 expected: 1

你可能感兴趣的:(Hibernate)