两种方法获取MyBatis刚刚插入的id

Posted ㄓㄤㄑㄧㄤ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两种方法获取MyBatis刚刚插入的id相关的知识,希望对你有一定的参考价值。

主要就是在xml文件中的写法,其他省略

方法一:

<insert id="insert" parameterType="com.xxx.xxxx.pojo.User">
        insert into t_user (name) 
        values (#{user.name})
        <selectKey resultType="Integer" order="AFTER" keyProperty="user.userId">
            SELECT LAST_INSERT_ID() AS userId
        </selectKey>
</insert>

方法二:

<insert id="insert" parameterType="Spares"     
        useGeneratedKeys="true" keyProperty="id">    
        insert into system(name) values(#{name})    
</insert>

然后在调用的时候就可以用对象的get属性方法来获取了。

以上是关于两种方法获取MyBatis刚刚插入的id的主要内容,如果未能解决你的问题,请参考以下文章

mybatis 批量插入 怎么获取刚刚插入的数据的id集合

MyBatis中id回填的两种方式

获取刚刚插入的记录ID?

MyBatis 插入时返回刚插入记录的主键值

我想获取我刚刚插入的行的 ID。我可以知道怎么做吗[重复]

Oracle怎么得到刚刚新插入数据库那条记录的id