spring mybatis 批量插入返回主键

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 mybatis 批量插入返回主键的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis批量插入返回主键报错

mybatis批量插入,怎么返回生成的自增主键

Mybatis批量插入返回自增主键(转)

mybatis批量插入,怎么返回生成的自增主键

mybatis 批量插入 怎么获取刚刚插入的数据的id集合

Mybatis之MySql批量insert后返回主键