mybatis-plus使用in查询超过1000条限制解决办法

解决思路
这种解决办法的核心思路就是每次将in的条数限制在1000以内,然后多次查询或者一次多个or条件拼接查询,然后将查询结果进行合并。

解决办法
毫无疑问,这里我们需要将超过1000条查询条件的list集合数据进行分割,一种方法是自己手工写分割方法,比较麻烦,不推荐,如果有兴趣可以自己去写写看,建议直接使用com.google.guava包中的Lists.partition这个api方法。

<dependency>
    <groupId>com.google.guava</groupId>
    <artifactId>guava</artifactId>
    <version>21.0</version>
</dependency>

  

import com.google.common.collect.Lists;
//  in表达式超出1000限制 将查询list拆分后用or连接
List<List<String>> lists = Lists.partition(selectIds, 1000);
LambdaQueryWrapper<ResEntity> wrapper = Wrappers.lambdaQuery();
for (List<String> list : lists) {
    wrapper.or().in(ResEntity::getId, list);
}
 
List<ResEntity> resList = this.list(wrapper );

  这样就轻松解决了mybatis-plus使用in查询超过1000条限制的问题。

 


原文链接:https://blog.csdn.net/weixin_42023748/article/details/138569340

posted @ 2024-09-12 22:21  红尘沙漏  阅读(491)  评论(0编辑  收藏  举报