mybatis返回新增数据id值
LC超人在良家 人气:11、自增主键情况下插入数据获取自增主键值
mybatis为我们提供了一个方法,能够插入数据时获取自动生成的值,并且把取的值赋值给实体类的某一属性
设置方法:
要求:主键必须是自增的
<insert id = "insert" useGeneratedKeys = "true" keyProperty = "id"> SQL语句 </insert>
useGeneratedKeys = true //是否返回自增主键值
keyProperty = “xxx” //将值赋给哪个属性,这个属性是方法参数中的
此时就是插入数据的实体类点.getId()可以得到
2、主键非自增的情况下获取主键值
一般我们使用来实现。一个块中只能有一个
下面我们了解一下selectKey中的属性
resultType:这个我们就不用解释了,返回类型
order:它有两个取值:1、BEFORE在添加之前查询 2、AFTER在添加之后查询 //这两个都是全大写
keyProperty:将取值赋值给方法参数,如果方法参数是实体类,一般赋值给实体类的字段
keyColumn:对应表的列名
一个selectKey中必须要有 resultType,order,keyProperty
after示例:查询最后一次添加的主键
<insert id = "insertEmp"> <selectKey resultType = "integer" order = "AFTER" keyProperty = "eid" > select last_insert_id() //查询最后一次添加的主键,mysql函数 </selectKey> insert into dept(id,deptname) values(#{id},#{deptname}) </insert>
before示例:假设Id不是自增长,我们希望在insert之前获取mysql的UUID添加到数据表作为主键Id
<insert id = "insertDept"> <selectKey resultType = "string" order = "BEFORE" keyProperty = "id"> select uuid() as id </selectKey> insert into dept(id,name) values(#{id},#{name}) </insert>
3、keyColumn作用
问题定义:有时候我们希望keyProperty返回的个数超过1的时候,能不能插入数据的时候返回多个值
1、把selectKey的结果赋值给keyProperty的各个属性
2、赋值规则:keyProperty和keColumn的列数相对应:1对1,2对2…
<insert id="xxx"> <selectKey resultType="com.entity.Dept" order="BEFORE" keyProperty="id,name" keyColumn="cid,cname"> select cid,cname from Category limit 1; </selectKey> insert into dept(id,name) values (#{id},#{name}) </insert> <!-- 代码解释:从Category中查询出cid,cname 赋值在方法参数中,然后添加到dept表-->
总结
加载全部内容