运行Hiberante查询报错:
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}}]...
在一些外国网站看到,有做left join未做别名命名的,报错中的classAlias=,
注意,我这里面在hql中已经命名,所以可以看到相应的classAlias=c。
找了好半天,调了好半天,终于找到了问题,
是在model的配置文件中,我这里面是many-to-one,在配置many-to-one时,配置了fetch="select",
这样在hql语句中,使用left join等时,就不可以再使用fetch,结果也是一次查询出来的,就没有问题了。
hql:
[错误] selecta.id,b.name from Aa left join fetch a.user bwherea.id=1
[正确] selecta.id,b.name from Aa left join a.user bwherea.id=1