此规范的棘手之处在于,您要查询的 Cat 与 Owner 没有直接关系。
总体思路是:
- 获取 所有者 。
- 使用 Owner.cats 关系成员关系将 所有者 与 Cat 相关联。我们可以只使用实体来完成此 *** 作,就像JPA一样为我们处理实体@Id相关性。 __
- 将 Cat 上的查询标记为 distinct 。为什么?因为这是@ManyToMany关系,并且根据所 使用的所有者 条件,任何给定的 Cat 可能都有多个匹配的 所有者 。
我的首选方法是使用子查询来引入 Owner :
// Subquery using Cat membership in the Owner.cats relationpublic static class Specs { static Specification<Cat> hasOwnerName(final String ownerName) { return (root, query, cb) -> { query.distinct(true); Root<Cat> cat = root; Subquery<Owner> ownerSubQuery = query.subquery(Owner.class); Root<Owner> owner = ownerSubQuery.from(Owner.class); expression<Collection<Cat>> ownerCats = owner.get("cats"); ownerSubQuery.select(owner); ownerSubQuery.where(cb.equal(owner.get("name"), ownerName), cb.isMember(cat, ownerCats)); return cb.exists(ownerSubQuery); }; }}
哪个Hibernate 4.3.x会生成SQL查询,例如:
方法2-笛卡尔积select cat0_.id as id1_1_from cat cat0_where exists ( select owner1_.id from owner owner1_ where owner1_.name=? and (cat0_.id in ( select cats2_.cat_id from owner_2_cats cats2_ where owner1_.id=cats2_.owner_id )) )
一种替代方法是使用笛卡尔积介绍 所有者 :
// Cat membership in the Owner.cats relation using cartesian productpublic static class Specs { static Specification<Cat> hasOwnerName(final String ownerName) { return (root, query, cb) -> { query.distinct(true); Root<Cat> cat = root; Root<Owner> owner = query.from(Owner.class); expression<Collection<Cat>> ownerCats = owner.get("cats"); return cb.and(cb.equal(owner.get("name"), ownerName), cb.isMember(cat, ownerCats)); }; }}
哪个Hibernate 4.3.x会生成SQL查询,例如:
select cat0_.id as id1_1_from cat cat0_cross join owner owner1_where owner1_.name=? and (cat0_.id in ( select cats2_.cat_id from owner_2_cats cats2_ where owner1_.id=cats2_.owner_id ))
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)