mybatisplus批量插入数据
时间: 2023-05-22 10:02:25 浏览: 156
MyBatis批量插入(insert)数据操作
5星 · 资源好评率100%
可以使用Mybatis-Plus提供的批量插入方法,示例代码如下:
List<User> userList = new ArrayList<>();
userList.add(new User("user1", "password1"));
userList.add(new User("user2", "password2"));
userList.add(new User("user3", "password3"));
userList.add(new User("user4", "password4"));
userList.add(new User("user5", "password5"));
// 批量插入
int count = userMapper.insertBatchSomeColumn(userList);
阅读全文