欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mybatis 插入数据时返回自增的主键Id

程序员文章站 2022-07-03 10:40:58
...

第一种方式:

@SelectKey(statement = "select LAST_INSERT_ID()", keyProperty = "id", before = false, resultType = int.class)

第二种方式

@Mapper
public interface UserMapper
{
    @Insert("insert into tbl_user (name, age) values (#{name}, #{age})")
    @Options(useGeneratedKeys=true, keyProperty="userId", keyColumn="id")
    void insertUser(User user);
} 

XML

单条记录插入并返回

添加useGeneratedKeys=“true” 以及keyProperty="id"即可。id为实体类中的字段名称

<insert id="insertAuthor" useGeneratedKeys="true" keyProperty="id">
  insert into Author (username,password,email,bio)
  values (#{username},#{password},#{email},#{bio})

多条记录插入并返回

坑:要注意,多条记录时,有可能会出现id没有返回的情况。检查以下几点:
1、Mybatis版本3.3.1及其以上。
2、在Dao中不能使用@param注解。
3、Mapper.xml中使用list变量接受Dao中的集合。

<insert id="insertAuthor" useGeneratedKeys="true" keyProperty="id">
  insert into Author (username, password, email, bio) values
  <foreach item="item" collection="list" separator=",">
    (#{item.username}, #{item.password}, #{item.email}, #{item.bio})
  </foreach>
</insert>
相关标签: Mybatis