简介
最近在业务功能中需要获取mybatis插入的数据并且返回插入数据的ID,去执行其他的操作,说来也很简单,在正常的insert标签里面加入提供的其他属性即可实现,故现在抽时间整理出来,希望能帮助到需要帮助的朋友
环境
数据库:mysql(table的id字段设置为自增)
依赖:jar
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.7</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.2.2</version>
</dependency>
单条插入返回
DaoMapper接口Mapper.xml配置
<insert id="insert" useGeneratedKeys="true" keyProperty="releaseDetailsId"
parameterType="com.xxx.CmsReleaseDetails" >
insert into cms_release_details (RELEASE_DETAILS_ID, RELEASE_DETAILS_CODE
)
values (#{releaseDetailsId,jdbcType=INTEGER}, #{releaseDetailsCode,jdbcType=VARCHAR}
)
</insert>
总结:即在普通插入中加入useGeneratedKeys和keyProperty属性即可,在插入完成后直接获取该插入实体封装的ID即可获取到参数。
批量插入
批量插入DaoMapper接口<insert id="insertBatch" useGeneratedKeys="true"
keyProperty="releaseDetailsId" keyColumn="RELEASE_DETAILS_ID"
parameterType="java.util.List" >
insert into cms_release_details (
RELEASE_DETAILS_ID,RELEASE_DETAILS_CODE) values
<foreach collection="list" item="item" index="index" separator="," >
( #{item.releaseDetailsId,jdbcType=INTEGER},
#{item.releaseDetailsCode,jdbcType=VARCHAR})
</foreach>
</insert>
但此时插入却报异常:
nested exception is org.apache.ibatis.binding.BindingException:
Parameter ' releaseDetailsId ' not found.
Available parameters are [list, collection]
后查证资料,批量插入返回ID报错bug在mybatis.3.3.1才被修复,故将mybatis升级为3.3.1,spring-mybatis版本不做处理,重启后正常插入且成功返回正确id
总结
其实批量插入返回ID和单条插入返回ID没有什么差别,首先还是要确定原本不返回值的插入是否成功,然后再做进一步操作,循序渐进
参考资料:
https://github.com/mybatis/mybatis-3/pull/324
https://github.com/abel533/mybatis-3/blob/master/src/main/java/org/apache/ibatis/executor/keygen/Jdbc3KeyGenerator.java
网友评论