mybatis-plus批量插入
时间: 2023-11-17 15:51:19 浏览: 4
mybatis-plus源码(mybatis-plus-3.5.1.zip)
5星 · 资源好评率100%
MyBatis-Plus支持批量插入数据。可以使用 `saveBatch` 方法来实现。例如:
```
List<User> userList = new ArrayList<>();
userList.add(new User().setName("Tom").setAge(18));
userList.add(new User().setName("Jack").setAge(20));
boolean result = userMapper.saveBatch(userList);
```
默认情况下,MyBatis-Plus使用的批量插入策略是批量插入100条数据。如果需要修改批量插入的数量,可以在配置文件中配置 `mybatis-plus.global-config.db-config.batch-size` 参数。例如:
```
mybatis-plus:
global-config:
db-config:
# 修改批量插入数量为200
batch-size: 200
```
阅读全文