illegal attempt to dereference collection
首先说一句:是版本的问题!
在多对多或者多对一,从一中查找多中查询某些语句时容易出现
我写的hql为:
from Dept as d where d.emp.name='Tom';
运行时出现异常:org.hibernate.QueryException: illegal attempt to dereference collection
是因为:在上面的HQL语句中,Dept 的关联实体emp是一个集合,而不直接是一个Emp实体。
在Hibernate3.2.2以前的版本,Hibernate会对关联实体自动使用隐式的inner join,
也就是说如下SQL语句不会有任何问题 :from Dept as d where d.emp.name='Tom';
从Hibernate3.2.3以后,Hibernate改变了这种隐式的inner join的策略
如果emp是也一个集合,那么对不起!系统将会出现 org.hibernate.QueryException: illegal attempt to dereference collection异常。
据Hibernate官方说法:
这样可以让这使得隐含关联更具确定性(原文:This makes implicit joins more deterministic )。
推荐这样写:
from Dept as d inner join fetch d.emp as s where s.name='Tom';