hibernate DetachedCriteria实现多表关联查询createAlias的使用
记录本例查询初衷:
有表:
表1,表2,表3
关系
1 many-to-one 2 2 many-to-one 3
结果:要通过表3中的条件反向查询表1中相关的数据
public Page<WeiCommentComment> findPageWeiCommentCommentByUserid( String userid, PageParam pageParam) { DetachedCriteria dc = super.getDetachedCriteria(); if(StringUtils.isNotBlank(userid)){ DetachedCriteria dcwei = dc.createAlias("weiComment", "w"); dcwei.add(Restrictions.eq("user.idStr", userid)); } Page<WeiCommentComment> page = super.findPage(dc, pageParam); return page; }
上面介绍:
WeiCommentComment:表1
weiComment:为表1中的定义的关联关系
@ManyToOne(targetEntity = WeiComment.class) @JoinColumn(name="wei_id",updatable=false) private WeiComment weiComment;
user:为表2中也就是WeiComment 中的表关联关系
@ManyToOne(targetEntity = NsanbanUser.class) @JoinColumn(name="userID",updatable=true) private NsanbanUser user;
如上介绍查询
知识只有共享才能传播,才能推崇出新的知识,才能学到更多,这里写的每一篇文字/博客,基本都是从网上查询了一下资料然后记录下来,也有些是原滋原味搬了过来,也有时加了一些自己的想法