mybatis批量插入数据list超过一定长度时报错的解决办法(批量插入数据,数据过多时报错解决和批量修改报错

在使用MyBatis进行批量新增时,如果数据量较大,可以考虑分批次插入以减少数据库的负载压力。这里提供一种基于MyBatis的分批次插入的方法:

  1. 创建一个新的Mapper XML文件(例如:BatchInsertMapper.xml)来定义批量插入的SQL语句。在该XML文件中,添加如下内容:


  INSERT INTO your_table (column1, column2, ...)
  VALUES
  
    (#{item.property1}, #{item.property2}, ...)
  

 

请将上述代码中的your_table替换为你的目标表名,并根据实际情况指定要插入的列和属性。

        2.在对应的Mapper接口中声明批量插入的方法。添加如下代码:

public interface YourMapper {
  void batchInsert(List entities);
}

 请将上述代码中的YourMapper替换为你的Mapper接口名和YourEntity替换为你的实体类名。

          3.在你的服务类或其他逻辑代码中,注入该Mapper并调用批量插入方法。例如:

@Autowired
private YourMapper yourMapper;

public void batchInsertData(List dataList) {
  int batchSize = 1000; // 指定每批次插入的数据量

  for (int i = 0; i < dataList.size(); i += batchSize) {
    int endIndex = Math.min(i + batchSize, dataList.size());
    List batchList = dataList.subList(i, endIndex);

    yourMapper.batchInsert(batchList);
  }
}

实话实说优化效率嘎嘎的,看数据量的大小,如果每条数据的数据量很大,建议把batchSize改的小一点。

请将上述代码中的YourEntity替换为你的实体类名,并根据需要调整batchSize的大小。

这样,通过循环遍历将数据列表分割为批次,并调用批量插入的方法,就可以实现分批次插入的功能。

希望对你有所帮助!

如果说是批量修改报错,

eg:update d_access_history_page set line_name = ? where line_id = ? ; update d_access_page set line_name = ? where line_id = ? ;
这种报错,报错是因为没有开启批量更新,不开启批量更新只允许操作一条,想要批量操作就要在数据库配置文件中的url后边增加&allowMultiQueries=true(在数据的配置后面加上他eg:

mysql.db-name}?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&useSSL=false&allowMultiQueries=true )

 

你可能感兴趣的:(mybatis,java,批量新增,批量修改)