mybatis中useGeneratedKeys和keyProperty的作用
Posted 精神病人思路广,弱智儿童欢乐多
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中useGeneratedKeys和keyProperty的作用相关的知识,希望对你有一定的参考价值。
使用场景:将对象插入id为自增的表中,同时在程序中仍需要用到该对象插入后自增的ID
方法:配置 useGeneratedKeys="true" keyProperty="对应的主键的对象"
<!-- 主要是在主键是自增的情况下,添加成功后可以直接使用主键值,其中keyProperty的值是对象的属性值不是数据库表中的字段名--> <insert id="insert" parameterType="user" useGeneratedKeys="true" keyProperty="id"> insert into User(name,sex,year,create_time) values (#{name},#{sex},#{year},#{create_time})
</insert>
这样在之后的java代码中我们就可以获取该主键对应的对象的属性值(id)
以上是关于mybatis中useGeneratedKeys和keyProperty的作用的主要内容,如果未能解决你的问题,请参考以下文章
Mybatis配置文件之useGeneratedKeys和keyProperty搭配用法
Mybatis配置文件之useGeneratedKeys和keyProperty搭配用法
Mybatis配置文件之useGeneratedKeys和keyProperty搭配用法
Mybatis配置文件之useGeneratedKeys和keyProperty搭配用法