mybatis plus常用操作

1.条件更新指定字段

java 复制代码
UpdateWrapper<ExamParticipation> updateWrapper = new UpdateWrapper<>();
updateWrapper.lambda()
    .eq(ExamParticipation::getId, id)
    .set(ExamParticipation::getField1, value1)
    .set(ExamParticipation::getField2, value2)
    .set(ExamParticipation::getField3, value3);

int rows = examParticipationMapper.update(null, updateWrapper);

2.条件批量更新

MyBatis-Plus 也支持批量更新操作。你可以使用 UpdateWrapper 类的 in 方法来指定批量更新的条件。

以下是一个示例代码,演示如何使用 MyBatis-Plus 进行批量更新:

java 复制代码
List<Long> ids = Arrays.asList(1L, 2L, 3L);
List<String> values = Arrays.asList("value1", "value2", "value3");

UpdateWrapper<ExamParticipation> updateWrapper = new UpdateWrapper<>();
updateWrapper.lambda()
    .in(ExamParticipation::getId, ids)
    .set(ExamParticipation::getField1, values);

int rows = examParticipationMapper.update(null, updateWrapper);

3.批量新增

MyBatis-Plus 也支持批量新增操作。你可以使用 MyBatis-Plus 提供的 saveBatch 或 saveBatchSomeColumn 方法来实现批量新增。

以下是一个示例代码,演示如何使用 MyBatis-Plus 进行批量新增:

java 复制代码
List<ExamParticipation> examParticipations = new ArrayList<>();
examParticipations.add(new ExamParticipation(field1, field2, field3));
examParticipations.add(new ExamParticipation(field1, field2, field3));
examParticipations.add(new ExamParticipation(field1, field2, field3));

boolean success = examParticipationService.saveBatch(examParticipations);

上述代码中,ExamParticipation 是实体类,examParticipationService 是对应的 Service 类。

首先,创建一个 List 对象,包含要新增的实体对象,每个实体对象表示一条记录。

接下来,调用 saveBatch 方法来执行批量新增操作。参数为实体对象的列表。

saveBatch 方法将会返回一个布尔值,表示批量新增操作是否成功。

4.批量新增部分字段

另外,如果你只想新增部分字段,可以使用 saveBatchSomeColumn 方法,

java 复制代码
List<ExamParticipation> examParticipations = new ArrayList<>();
examParticipations.add(new ExamParticipation(field1, field2, field3));
examParticipations.add(new ExamParticipation(field1, field2, field3));
examParticipations.add(new ExamParticipation(field1, field2, field3));

boolean success = examParticipationService.saveBatchSomeColumn(examParticipations);

5.联表查询

MyBatis-Plus 支持联表查询操作。你可以使用 MyBatis-Plus 提供的方法来实现联表查询,其中包括使用 @TableField 注解进行关联映射,以及使用 @TableName 注解指定表名。

以下是一个示例代码,演示如何使用 MyBatis-Plus 进行联表查询:

java 复制代码
public List<Order> getOrdersWithUser() {
    return orderMapper.selectList(new QueryWrapper<Order>()
        .select("order.*", "user.user_name")
        .leftJoin("user", "user.id = order.user_id")
        .eq("order.status", "paid")
    );
}
相关推荐
考虑考虑1 分钟前
JDK14中的switch
java·后端·java ee
昊坤说不出的梦9 分钟前
【微服务】Nacos 配置动态刷新(简易版)(附配置)
java·spring boot·微服务
m0_7482507412 分钟前
PostgreSQL-01-入门篇-简介
数据库·postgresql
啾啾Fun14 分钟前
[微服务设计]1_微服务
java·微服务·微服务设计
阳光九叶草LXGZXJ16 分钟前
达梦数据库-学习-10-SQL 注入 HINT 规则(固定执行计划)
linux·运维·数据库·sql·学习
为什么不问问神奇的海螺呢丶24 分钟前
Kubernetes 中 YAML 文件详解
java·容器·kubernetes
Slow菜鸟29 分钟前
MongoDB分页实现方式对比:PageRequest vs Skip/Limit
数据库·mongodb
zru_96021 小时前
Rule-Engine 使用介绍
java·前端·数据库
小蒜学长1 小时前
乡政府管理系统设计与实现(代码+数据库+LW)
数据库·spring boot·后端·学习·旅游
inxunoffice1 小时前
批量将多个 Excel 合并成单个文件|批量按文件夹合并 Excel
数据库·excel