insert语句返回主键id并映射到实体类中
Posted 念念不忘,笑对人生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了insert语句返回主键id并映射到实体类中相关的知识,希望对你有一定的参考价值。
1. 自增id的返回
方法一:
在SQL 映射文件的select标签中添加useGeneratedKeys=“true"属性与keyProperty=” "属性,keyProperty的值表示的是将获取到的自增主键值赋给JavaBean 中的某个字段。
<insert id="insert" keyProperty="custId" useGeneratedKeys="true" parameterType="com.ccs.po.CustPo">
INSERT INTO cms.cust(cust_code,cust_name) values(#custCode,#custName)
</insert>
方法二:
使用selectKey标签返回id
<insert id="insert" parameterType="com.ccs.po.CustPo">
<selectKey keyProperty="custId" order="AFTER" resultType="Integer">
SELECT LAST_INSERT_ID()
</selectKey>
INSERT INTO cms.cust(cust_code,cust_name) values(#custCode,#custName)
</insert>
将插入数据的主键返回,返回到user对象中 :
SELECT LAST_INSERT_ID():执行sql函数得到刚insert进去记录的主键值,只适用于自增主键
keyProperty:将查询到主键值设置到parameterType指定的对象的那个 属性
order:selectKey的执行顺序,是相对与insert语句来说,由于mysql的自增原理执行完insert语句之后才将主键生 成,所以这里selectKey的执行顺序为after
resultType:指定SELECT LAST_INSERT_ID()的结果类型
2. 非自增主键的获取
对于mysql的另外一种方式uuid的形式是与自增主键的执行过程是相反的,它的执行过程是:首先通过uuid()得到主键,然后将主键设置到user对象的id属性中,之后在insert执行时,再从user对象中取出id属性值。
<insert id="insert" parameterType="com.ccs.po.CustPo">
<selectKey keyProperty="custId" order="BEFORE" resultType="Integer">
SELECT uuid()
</selectKey>
INSERT INTO cms.cust(cust_id,cust_code,cust_name) values(#custId,#custCode,#custName)
</insert>
首先使用mysql的uuid()函数生成主键,然后将主键设置到user对象的id属性中其次,在insert执行时,从user对象中取出id属性值
同样的,对于oracle数据库使用序列和mysql使用uuid的方式是一样的:
<insert id="insert" parameterType="com.ccs.po.CustPo">
<selectKey keyProperty="custId" order="BEFORE" resultType="java.lang.String">
SELECT 序列名.nextval()
</selectKey>
insert into cms.cust(cust_id,cust_code,cust_name) values(#custId,#custCode,#custName)
</insert>
mybatis 实现 insert 语句返回 主键
mybatis 中 insertSelective(example) 语句默认返回并不是 插入记录的主键。
我们可以考虑插入记录主键不直接作为 函数的返回值, 而是体现在改变函数参数 "example", 使其主键等于插入记录的主键。
在insertSelective xml定义中,加入以下代码:
<selectKey resultType="Integer" keyProperty="id" >
SELECT last_insert_id() as id;
</selectKey>
这样就完成了对与参数改变。
注: 该方法只适用于 mysql 数据库!
以上是关于insert语句返回主键id并映射到实体类中的主要内容,如果未能解决你的问题,请参考以下文章
mybatis insert 返回主键 的before 和after的区别