在使用MyBatis进行批量新增时,如果数据量较大,可以考虑分批次插入以减少数据库的负载压力。这里提供一种基于MyBatis的分批次插入的方法:
- 创建一个新的Mapper XML文件(例如:BatchInsertMapper.xml)来定义批量插入的SQL语句。在该XML文件中,添加如下内容:
<!-- 参数为List类型,使用foreach循环插入每个对象 -->
<insert id="batchInsert" parameterType="java.util.List">
INSERT INTO your_table (column1, column2, ...)
VALUES
<foreach collection="list" item="item" separator=",">
(#{item.property1}, #{item.property2}, ...)
</foreach>
</insert>
文章来源地址https://www.toymoban.com/news/detail-570009.html
请将上述代码中的your_table
替换为你的目标表名,并根据实际情况指定要插入的列和属性。
2.在对应的Mapper接口中声明批量插入的方法。添加如下代码:
public interface YourMapper {
void batchInsert(List<YourEntity> entities);
}
请将上述代码中的YourMapper
替换为你的Mapper接口名和YourEntity
替换为你的实体类名。
3.在你的服务类或其他逻辑代码中,注入该Mapper并调用批量插入方法。例如:
@Autowired
private YourMapper yourMapper;
public void batchInsertData(List<YourEntity> dataList) {
int batchSize = 1000; // 指定每批次插入的数据量
for (int i = 0; i < dataList.size(); i += batchSize) {
int endIndex = Math.min(i + batchSize, dataList.size());
List<YourEntity> 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 )文章来源:https://www.toymoban.com/news/detail-570009.html
到了这里,关于mybatis批量插入数据list超过一定长度时报错的解决办法(批量插入数据,数据过多时报错解决和批量修改报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!