spring boot + mybatis批量插入大量数据(超过10000条)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot + mybatis批量插入大量数据(超过10000条)相关的知识,希望对你有一定的参考价值。

参考技术A 本文仅自己学习笔记

spring mybatis 批量插入返回主键

1.模型

public class AzTest {
private Integer id;

private Integer age;

private String title;

public Integer getId() {
return id;
}

public void setId(Integer id) {
this.id = id;
}

public Integer getAge() {
return age;
}

public void setAge(Integer age) {
this.age = age;
}

public String getTitle() {
return title;
}

public void setTitle(String title) {
this.title = title == null ? null : title.trim();
}
}

2.mapper
void insertAll(List<AzTest> list);

3.xml

<insert id="insertAll" parameterType="AzTest" keyProperty="id" useGeneratedKeys="true">
insert into az_test(age,title)
VALUES
(#{age},#{title})
</insert>








































以上是关于spring boot + mybatis批量插入大量数据(超过10000条)的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot MySQL 不批量插入

Spring Boot JPA 批量插入

HIbernate 批量插入或更新在 Spring Boot 中不起作用

使用 Spring Boot 和 Spring Data JPA 批量插入不起作用

请教mysql spring mvc +mybatis中批量插入的问题

Spring Boot 集成 Druid 批量插入数据和效率监控配置