解决hibernate left join fetch 出错的问题

解决hibernate left  join fetch 出错的问题

今天写一个hql,其中用到了 left join fetch ,最后报错: 

 
//错误的写法:
String hql = "select count(ar) from Article ar left join fetch ar.channel ch where ch.id=?"; 

query specified join fetching, but the owner of the fetched association was not present in the select list [FromElement{explicit,not a collection join,fetch join,fetch non-lazy properties,classAlias=c,role=null,tableName=Student,tableAlias=studentlig1_,origin=classentity classentitylo0_,colums={classentitylo0_.entry_id ,className=com.common.Manger}}]...
查了下资料,发现是我在实体Article中使用了@ManytoOne(fetch=FetchType.EAGER)原因,在实体中注解指定了fetch后,在hql中就不能再写fetch了,把fetch去掉,直接可以成 String hql = "select count(ar) from Article ar left join  ar.channel ch where ch.id=?" 就可以了。

在Article实体中的配置Channle
@ManyToOne(cascade=CascadeType.REFRESH,fetch=FetchType.EAGER,optional=true)
@JoinColumn(name="cid",nullable=true)
public Channel getChannel() {
return channel;
}
正确的写法 : 
String hql = "select count(ar) from Article ar left join  ar.channel ch where ch.id=?"

转载于:https://my.oschina.net/guhai2004/blog/170128

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值