mybatis中Insert后主键返回

Posted 沐春风-燕南飞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中Insert后主键返回相关的知识,希望对你有一定的参考价值。

转载:https://www.cnblogs.com/Lyn4ever/p/11390497.html

1.Mapper的写法,返回的这个int是受影响的行号

int insertNewUser(User newUser);

2.xml的写法

	<!--返回主键 形式1 -->
    <insert id="saveReturnPK1" parameterType="cn.lyn4ever.bean.User" useGeneratedKeys="true" keyProperty="id">
        INSERT INTO `test`.`tb_user`(`username`, age) VALUES(#{username}, #{age})
    </insert>

    	<!-- 返回主键 形式2 -->
    <insert id="saveReturnPK2" parameterType="cn.lyn4ever.bean.User">
        <selectKey keyProperty="id" resultType="int" order="AFTER">
            SELECT LAST_INSERT_ID()
        </selectKey>
        INSERT INTO `test`.`tb_user`(`username`, age) VALUES(#{username}, #{age})
    </insert>

3.如何拿到我们刚插入的这个类呢?还是用我们之前插入时的那个newUser,mybatis会给它加上返回的主键的,Mapper方法中返回的那个int只是受影响的行号而已,此时,只会返回0或1

newUser.getId();  这个不再是空的了

以上是关于mybatis中Insert后主键返回的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis总结

Mybatis 怎么返回insert插入的主键

mybatis 实现 insert 语句返回 主键

MyBatis 返回insert操作主键

mybatis 通用mapper.xml中 insert 方法不是自增主键怎么返回

mybatis 通用mapper.xml中 insert 方法不是自增主键怎么返回?