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代码文章来源:https://www.toymoban.com/news/detail-409110.html
@Override
public int insertSelective(User record) {
int result = userMapper.insertSelective(record);
log.info("当前行数据的ID为{}",record.getId());
return result;
}
日志文件为:文章来源地址https://www.toymoban.com/news/detail-409110.html
2023-04-06 15:45:09.813 INFO 15952 --- [nio-8080-exec-1] c.w.s.service.impl.UserServiceImpl : 当前行数据的ID为107
到了这里,关于MyBatis中如何获取自动生成的(主)键值的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!