springboot中使⽤JOIN实现关联表查询
* ⾸先要确保你的表和想要关联的表有外键连接
repository中添加接⼝JpaSpecificationExecutor<?>,就可以使⽤springboot jpa 提供的API了。
@Repository
public interface MyEntityRepository extends JpaRepository<MyEntity, Integer>, JpaSpecificationExecutor<MyEntity> {
join和in哪个查询更快
//...
}
在查询⽅法中调⽤ JpaSpecificationExecutor 提供的 findAll() ⽅法,查询到我们需要的结果集,先上代码,后续说明
public Page<MyEntity> getMerchants(List<Integer> fKIds, String sortField, String entityName,
Integer pageNum) {
Pageable pageable = PageRequest.of(pageNum, 20, Direction.DESC, sortField);
@SuppressWarnings("serial")
Page<MyEntity> page = myEntityRepository.findAll(new Specification<MyEntity>() {
@Override
public Predicate toPredicate(Root<MyEntity> root, CriteriaQuery<?> query, CriteriaBuilder cb) {
if (fKIds!= null) {
Join<MyEntity, EntityDetails> join = root.join("entityDetails");
list.add(join .get("id").in(fKIds));
}
Predicate[] array = new Predicate[list.size()];
return cb.Array(array));
}
}, pageable);
return page;
}
代码解释:
fKIds,这⾥为了顺便记录in查询,我查询的条件是 ityDetails.id in fKIds,就是关联表字段的in查询
sortField, pageNum为分页参数
toPredicate⽅法构建了查询条件的集合
这⾥join的精髓就是,获取join对象,通过join对象进⾏查询条件的构建。
iteria.Join<MyEntity, EntityDetails>
A join to an entity, embeddable, or basic type.
Type Parameters:<Z> the source type of the join
<X> the target type of the join
Since:Java Persistence 2.0
低调总结:真的不太⽤的来博客园这个编辑器(^_^),其实蛮好⽤的,多⽤就知道了。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。