如果是List类型的String,例如:List<String>这种类型的,就直接放值就可以了,本文讲的是当你查询到的是一个list集合如何遍历取值,否则要写sql和接口就显得很麻烦。
步骤如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//查询到list集合 List<User> userList = userService.selectById(id); //结果集 List<String> resultList = new ArrayList<>(); //遍历集合取值 userList .forEach(item->{ resultList.add(item.getYouNeedId()); }); //条件构造器in上手使用 QueryWrapper<User> qw = new QueryWrapper<>(); qw.in( "you_need_id" , resultList); //这里有个分页的查询,你也可以不用分页,用mybatisplus里面封装的其他方法 IPage<User> userIPage = userMapper.selectPage(page, qw); //返回查询结果,getRecords也是mybatisplus里面封装的方法 return contractRecordIPage.getRecords(); |
补充:Mybatis Plus 通过QueryWrapper做查询时in()方法的使用
UserId类:
1
2
3
4
5
6
7
|
@Data public class UserId { /** * 用户id集合 */ private JSONArray userIdList; } |
测试类:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public class Test{ public JSONArray getUserStatusList(UserId userId) { // 添加非空校验,JsonArray对象为null或长度为0时直接返回,不执行sql if (userId.getUserIdList() == null || userId.getUserIdList().size() == 0 ) { return new JSONArray(); } // 创建查询Wrapper对象 QueryWrapper wrapper = new QueryWrapper(); wrapper.in( "user_id" , userId.getUserIdList()); List list = baseMapper.selectObjs(wrapper); return JSONArray.parseArray(JSON.toJSONString(list)); } } |
注意:如果不加非空校验,当集合为空集合时会报SQL的异常
到此这篇关于mybatis plus in方法使用详解的文章就介绍到这了,更多相关mybatis plus in内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/qq_15072163/article/details/107055792