MyBatis获取自动生成的(主)键值的方法
作者:fmwind
本文主要介绍了MyBatis获取自动生成的(主)键值的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
Mybatis中insert 方法总是返回一个int值 ,这个值代表的是插入所影响的行数。 如果id采用自增长策略,自动生成的键值在 insert 方法执行完后可以被设置到传入的参数对象中。那么我们可以在service中通过传入的对象来获得插入的id值。
mapper.xml文件
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.woniuxy.springbootmybatis.entity.User" useGeneratedKeys="true"> insert into user ( id,user_name,tel ,password,age,create_date ,head_img,dept_id) values (#{id,jdbcType=INTEGER},#{userName,jdbcType=VARCHAR},#{tel,jdbcType=VARCHAR} ,#{password,jdbcType=VARCHAR},#{age,jdbcType=INTEGER},#{createDate,jdbcType=TIMESTAMP} ,#{headImg,jdbcType=VARCHAR},#{deptId,jdbcType=INTEGER}) </insert>
service代码
@Override public int insertSelective(User record) { int result = userMapper.insertSelective(record); log.info("当前行数据的ID为{}",record.getId()); return result; }
日志文件为:
2023-04-06 15:45:09.813 INFO 15952 --- [nio-8080-exec-1] c.w.s.service.impl.UserServiceImpl : 当前行数据的ID为107
非自增长的主键
<insert id="add" parameterType="user"> <selectKey keyProperty="id" order="BEFORE" resultType="string"> select uuid() </selectKey> insert into questions (id,title) values(#{id},#{title}) </insert>
- insert入参填充、返回值不变
- 返回值还是Integer受影响的行数
- 入参的user中也会注入主键值
- selectKey :将执行结果注入到user的属性中
- keyProperty:注入的user中主键对应的属性
- order
- BEFORE:selectKey在insert之前执行,一般为uuid、序列,此时执行结果已注入到user属性中,再执行insert时,使用#{id}即为selectKey注入的值
- AFTER:selectKey在insert之后执行,一般为自增主
- resultType:selectKey中执行sql的返回结果类型
到此这篇关于MyBatis获取自动生成的(主)键值的方法的文章就介绍到这了,更多相关MyBatis获取自动生成键值内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!