详解Spring Data JPA动态条件查询的写法

网友投稿 967 2023-05-05


详解Spring Data JPA动态条件查询的写法

我们在使用SpringData JPA框架时,进行条件查询,如果是固定条件的查询,我们可以使用符合框架规则的自定义方法以及@Query注解实现。

如果是查询条件是动态的,框架也提供了查询接口。

JpaSpecificationExecutor

和其他接口使用方式一样,只需要在你的Dao接口继承即可(官网代码)。

public interface CustomerRepository extends CrudRepository, JpaSpecificationExecutor {

}

JpaSpecificationExecutor提供很多条件查询方法。

public interface JpaSpecificationExecutor {

T findOne(Specification var1);

List findAll(Specification var1);

Page findAll(Specification var1, Pageable var2);

List findAll(Specification var1, Sort var2);

long count(Specification var1);

}

比如方法:

List findAll(Specification var1);

就可以查找出符合条件的所有数据,如果你的框架使用的是前段分页的技术,那么这个方法就挺简便的。

那么这个方法该如何使用呢?我们看到它需要的参数是一个

org.springframework.data.jpa.domain.Specification

对象。那我们就创建这个对象先看看。

Specification specification = new Specification() {

@Override

public Predicate toPredicate(Root root, CriteriaQuery criteriaQuery, CriteriaBuilder criteriaBuilder) {

return null;

}

}

IDE自动生成了要重写的方法toPredicate。

root参数是我们用来对应实体的信息的。criteriaBuilder可以帮助我们制作查询信息。

/**

* A root type in the from clause.

* Query roots always reference entities.

*

* @param the entity type referenced by the root

* @since java Persistence 2.0

http:// */

public interface Root extends From {...}

/**

* Used to construct criteria queries, compound selections,

* expressions, predicates, orderings.

*

*

Note that Predhttp://icate is used instead of Expression

* in this API in order to work around the fact that Java

* generics are not compatible with varags.

*

* @since Java Persistence 2.0

*/

public interface CriteriaBuilder {...}

CriteriaBuilder对象里有很多条件方法,比如制定条件:某条数据的创建日期小于今天。

criteriaBuilder.lessThan(root.get("createDate"), today)

该方法返回的对象类型是Predicate。正是toPredicate需要返回的值。

如果有多个条件,我们就可以创建一个Predicate集合,最后用CriteriaBuilder的and和or方法进行组合,得到最后的Predicate对象。

/**

* Create a conjunction of the given restriction predicates.

* A conjunction of zero predicates is true.

*

* @param restrictions zero or more restriction predicates

*

* @return and predicate

*/

Predicate and(Predicate... restrictions);

/**

* Create a disjunction of the given restriction predicates.

* A disjunction of zero predicates is false.

*

* @param restrictions zero or more restriction predicates

*

* @return or predicate

*/

Predicate or(Predicate... restrictions);

示例:

public List findByCondition(Date minDate, Date maxDate, String nickname){

List resultList = null;

Specification querySpecifi = new Specification() {

@Override

public Predicate toPredicate(Root root, CriteriaQuery> criteriaQuery, CriteriaBuilder criteriaBuilder) {

List predicates = new ArrayList<>();

if(null != minDate){

predicates.add(criteriaBuilder.greaterThan(root.get("subscribeTime"), minDate));

}

if(null != maxDate){

predicates.add(criteriaBuilder.lessThan(root.get("subscribeTime"), maxDate));

}

if(null != nickname){

predicates.add(criteriaBuilder.like(root.get("nickname"), "%"+nickname+"%"));

}

return criteriaBuilder.and(predicates.toArray(new Predicate[predicates.size()]));

}

};

resultList = this.weChatGzUserInfoRepository.findAll(querySpecifi);

return resultList;

}

and到一起的话所有条件就是且关系,or就是或关系了。

其实也是在Stack Overflow上看到的。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:通过构造函数实例化对象的方法
下一篇:mock 开源测试工具(mock生成测试数据)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~