Java JPA框架多条件查询如果条件中有null值或者""值时怎么自动屏蔽不and这个条件。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java JPA框架多条件查询如果条件中有null值或者""值时怎么自动屏蔽不and这个条件。相关的知识,希望对你有一定的参考价值。

List<GoMessage> findByMessageNameContainingAndLetterNameAndMessageDetailAndCityOrderByMessageDateDesc(String messageName, String letterName, String messageDetail, String city, Pageable pageable);当值等于null或者""时就不筛选这个条件。

在xml中使用如下判断语句,应该能解决你说的问题,如果有多个条件,以此类推!
希望能帮到你。
<where>
1=1
<if test="messageName != null and messageName!='' " >
and message_name = #messageName ,jdbcType=VARCHAR,
</if>
<if>

.........................

</if>

</where>追问

我这个jpa是根据名字来查询结果的,没有配置xml

参考技术A 不是你这么写的。
你这种写法做不到,只能by后面的条件都带上去查询。
推荐使用动态条件查询:
Specification specification = new Specification()
@Override public Predicate toPredicate(Root root, CriteriaQuery criteriaQuery, CriteriaBuilder criteriaBuilder) return null;

本回答被提问者和网友采纳

spring-data-jpa动态条件查询

//获取动态条件的集合
List<Long> list = new ArrayList<Long>(); Long sysUserId = currentUser.getSysUserId(); if (sysUserId != null) { SysUser sysUser = sysUserRepository.findOne(sysUserId); if (sysUser != null) { String groupItemIds = sysUser.groupItemIds(); if (groupItemIds != null && !groupItemIds.isEmpty()) { String[] str = StringUtils.split(groupItemIds,","); for (String s : str) { if (s != null && !s.isEmpty() && s != "") { list.add(Long.valueOf(s)); } } } } }

 

 

 

//封装Specification查询条件
Specification<Goods> spec = (root, query, cb) -> { List<Predicate> predicates = new ArrayList<Predicate>(); List<Predicate> preList = new ArrayList<Predicate>(); if (list != null && list.size()>0) { preList.add(root.<Long>get("groupItemId").in(list)); } if (sysUserId != null) { Predicate predicate = cb.equal(root.get(Goods_.crtUserId), sysUserId); preList.add(predicate); } Predicate p = cb.or(preList.toArray(new Predicate[preList.size()])); predicates.add(p); if (!predicates.isEmpty()) { return cb.and(predicates.toArray(new Predicate[0])); } else { return null; } }; Page<Goods> pageresult = goodsRepository.findAll(spec, pageable);

 



以上是关于Java JPA框架多条件查询如果条件中有null值或者""值时怎么自动屏蔽不and这个条件。的主要内容,如果未能解决你的问题,请参考以下文章

spring-data-jpa动态条件查询

JPA多条件查询

spring jpa : 多条件查询

Android用query怎么进行多条件查询?

多对多关系中的 JPA 条件查询

JPA Left Join IS NULL条件不起作用