一、entitywrapper多表查询
entitywrapper 是 Mybatis-plus 框架提供的一个用于构建查询条件的 API。相比于使用 XML 配置文件或者注解方式配置 SQL 语句,entitywrapper 具有更高的灵活性和易读性。在多表查询时,entitywrapper 非常方便。下面是一个示例:
// 使用 entitywrapper 进行多表查询 EntityWrapperwrapper = new EntityWrapper (); wrapper.eq("user.id", 1L); wrapper.eq("order.status", "PAID"); List userList = userMapper.selectUserWithOrder(wrapper);
上面的代码使用 entitywrapper 进行了 user 和 order 两张表的多表查询。其中,eq 方法指定了 user 和 order 表的查询条件,最后使用 selectUserWithOrder 方法查询结果。
使用 entitywrapper 可以方便地构建多表查询条件,同时支持 SQL 语句中的各种查询关键字和操作符。
二、entitywrapper和querywrapper
entitywrapper 和 querywrapper 都是 Mybatis-plus 提供的用于构建查询条件的 API。它们之间的区别在于,entitywrapper 是以实体类为中心进行构建的,而 querywrapper 则是以纯 SQL 语句为中心进行构建的。因此,在一些需要灵活构建查询条件的场景下,querywrapper 显得更加方便。
entitywrapper 和 querywrapper 的一个最大的区别在于,entitywrapper 可以与 Mybatis-plus 的 ActiveRecord 功能配合使用,使得代码更加简洁易读。如下所示:
// 使用 entitywrapper 构建查询条件 EntityWrapperwrapper = new EntityWrapper (); wrapper.eq("id", 1L); // 使用 ActiveRecord 进行查询 User user = new User(); user.setName("Tom"); Wrapper queryWrapper = Wrappers. query().setEntity(user).and(wrapper); List userList = user.selectList(queryWrapper);
上面的代码首先使用 entitywrapper 构建查询条件,然后通过 Wrappers.query() 方法,使用 ActiveRecord 进行查询。这样,查询条件就与 ActiveRecord 这个 ORM 框架紧密结合起来,使得代码非常简洁易读。
三、entitywrapper方法
在实际开发中,我们可能需要对查询的结果进行排序、分页、去重等操作。entitywrapper 提供了一系列方法,供我们灵活地对查询结果进行处理。
1. orderBy 方法
orderBy 方法可以对查询结果进行排序。如下所示:
// 使用 entitywrapper 对查询结果进行排序 EntityWrapperwrapper = new EntityWrapper (); wrapper.orderBy("age", true); List userList = userMapper.selectList(wrapper);
上面的代码使用 entitywrapper 对查询结果按照 age 字段进行升序排序。
2. groupBy 方法
groupBy 方法可以对查询结果进行分组。如下所示:
// 使用 entitywrapper 对查询结果进行分组 EntityWrapperwrapper = new EntityWrapper (); wrapper.groupBy("age"); List userList = userMapper.selectList(wrapper);
上面的代码使用 entitywrapper 对查询结果按照 age 字段进行分组。
3. distinct 方法
distinct 方法可以对查询结果进行去重。如下所示:
// 使用 entitywrapper 对查询结果进行去重 EntityWrapperwrapper = new EntityWrapper (); wrapper.setSqlSelect("distinct age"); List userList = userMapper.selectList(wrapper);
上面的代码使用 entitywrapper 对查询结果根据 age 字段进行去重。
四、entitywrapper清除条件
在使用 entitywrapper 构建查询条件时,可能会有一些查询条件是不必要的,此时需要将这些条件清除掉。Mybatis-plus 提供了如下方法实现清除:
// 清除所有查询条件 EntityWrapper.clear(); // 清除指定查询条件 EntityWrapper.clear(String column);
五、entitywrapper方法作用
entitywrapper 提供的方法非常丰富,几乎能够满足所有的查询条件构建需求。下面列举一些常用的方法:
1. eq(String column, Object value):等于
2. ne(String column, Object value):不等于
3. like(String column, String value):模糊查询
4. gt(String column, Object value):大于
5. lt(String column, Object value):小于
6. ge(String column, Object value):大于等于
7. le(String column, Object value):小于等于
8. between(String column, Object value1, Object value2):在某个区间内
9. in(String column, List<Object> valueList):在某个值列表中
10. notIn(String column, List<Object> valueList):不在某个值列表中
六、entitywrapper 获取规定条数
在实际开发中,我们可能需要查询结果的前几条记录,此时需要用到 limit 方法。Mybatis-plus 提供了如下方法实现:
// 查询前5条记录 EntityWrapperwrapper = new EntityWrapper (); wrapper.last("limit 5"); List userList = userMapper.selectList(wrapper);
上面的代码使用 entitywrapper 对查询结果进行限制,查询结果只返回前5条记录。
七、entitywrapper将条件至空
在使用 entitywrapper 构建查询条件时,可能会有一些查询条件是不必要的,此时需要将这些条件至空。Mybatis-plus 提供了如下方法实现:
// 将条件至空 EntityWrapper.where(String sql, Object... params);
其中,sql 参数表示 SQL 语句,params 参数表示占位符的值。
八、总结
通过以上对 entitywrapper 的详细阐述,我们可以看出,entitywrapper 是一个非常强大、灵活、易读的 API。它支持多表查询、查询条件构建、查询结果处理等多种操作,可以有效地提高我们的开发效率,同时也能让我们的代码更加清晰易懂。