Illegal attempt to associate a collection with two open session问题

来源:互联网 发布:mac系统 excel打不开 编辑:程序博客网 时间:2024/05/29 01:56

在spring的HibernateTemplate中经常遇到这样的情况:

一个session 负责载入数据,另一个session 修改了这个数据

如果前一个session没有close的话,就会报标题的错误

解决方法是使用 hibernate的Merge函数

用这个函数代替Update,能将一个已经与session绑定的数据Update