mybatis映射文件之获取自增的主键

Posted 西西嘛呦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis映射文件之获取自增的主键相关的知识,希望对你有一定的参考价值。

    <insert id="addEmp" parameterType="com.gong.mybatis.bean.Employee"
    useGeneratedKeys="true" keyProperty="id">
        insert into tbl_employee(last_name,gender,email)
        values(#{lastName},#{gender},#{email}) 
    </insert>

先通过useGeneratedKeys="true"来获取主键,然后使用keyProperty将这个值封装给javaBean的哪个属性。

以上是关于mybatis映射文件之获取自增的主键的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis 在 insert 之后想获取自增的主键 id

Mybatis里Mapper映射sql文件里insert的主键返回selectKey使用

mybatis插入数据后返回自增的主键id

mybatis怎么设置主键自增

mybatis(mapper映射文件)

Mybatis返回插入的主键