这篇文章主要介绍“MyBatis怎么获取自动生成的键值”,在日常操作中,相信很多人在MyBatis怎么获取自动生成的键值问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”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的返回结果类型
版权声明:除特别声明外,本站所有文章皆是本站原创,转载请以超链接形式注明出处!