illegal attempt to dereference collection

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';  


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值