HibernateException: Illegal attempt to associat...

HibernateException: Illegal attempt to associate a collection with two open sessions

        Session session=getSession();
		Transaction tx = null;  
        try {  
            tx = session.beginTransaction();  
            session.update(user);  
            tx.commit();  
        } catch (Exception e) {  
            tx.rollback();  
            e.printStackTrace();  
        } finally {    
            session.close();  
        }

提示原因是使用开启了两个Session。
但是代码是一用,一提交,一关闭,应该不会开启两个Session的。 
后来发现又是因为懒加载的原因。

解决方法

session.update(entity)方法改成session.merge(entity),merge方法是合并为一个session。 

你可能感兴趣的:(HibernateException: Illegal attempt to associat...)