mybatis执行insert返回主键
Posted wangsong412
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis执行insert返回主键相关的知识,希望对你有一定的参考价值。
第一种方式(推介):
<!--
所有数据库通用,插入成功返回最近一次插入的id
它会将id直接赋值到对应的实体当中
TStudent stu = new TStudent(); studentMapper.add(TStudent ); int pk = stu.getId(); // 这就是我们的主键id --> <insert id="add" parameterType="TStudent" useGeneratedKeys="true" keyProperty="id"> insert into TStudent(name, age) values(#{name}, #{age}) </insert>
第二种方式:
<!-- 注意 keyProperty 属性,selectKey 标签,主键是id --> <insert id="insertEstimate" parameterType="java.util.Map" useGeneratedKeys="true" keyProperty="id"> <!-- 获取最近一次插入记录的主键值的方式 --> <selectKey resultType="java.lang.Integer" order="AFTER" keyProperty="id"> SELECT @@IDENTITY </selectKey> insert into test_table(estimate_no) values(#{budgetNo}) </insert>
常用第一种方式进行
原文链接:https://blog.csdn.net/u012489091/article/details/89339437
以上是关于mybatis执行insert返回主键的主要内容,如果未能解决你的问题,请参考以下文章