
Hibernate
山内樱良
越努力,越幸运。
展开
-
Batch update returned unexpected row count from update [0]; actual row count: 0; expected: 1的解决方法
15:45:07.503 [http-nio-8080-exec-36] ERROR org.hibernate.internal.SessionImpl - HHH000346: Error during managed flush [Batch update returned unexpected row count from update [0]; actual row count: 0; ...原创 2019-07-27 16:08:16 · 2925 阅读 · 0 评论 -
有关org.hibernate.SessionException的解决方法
最近在学习hibernate时,运行代码时碰到了如下异常:原因是:我使用的是session.getCurrentSession()在当前线程上获取session对象,而后我先是提交了事务,最后又使用了session.close(),因为session.getCurrentSession()在提交事务时,会自动关闭session,自己最后手动又关闭了一次,所以会抛出这个异常。如果你使用的是...原创 2019-07-11 10:02:14 · 562 阅读 · 0 评论