springboot 配置mybatis-plus执行批量sql 案例
时间: 2023-12-07 22:02:38 浏览: 101
可以使用Mybatis-plus提供的批量插入方法,如下所示:
```java
List<User> userList = new ArrayList<>();
// 添加用户到列表中...
boolean result = userService.saveBatch(userList, 100); // 100表示每批次提交的数量
if (result) {
System.out.println("批量插入成功!");
} else {
System.out.println("批量插入失败!");
}
```
这样就可以实现批量插入操作了。如果需要批量更新或删除,则可以使用类似的方法。
阅读全文