标签:插入 还需要 实体 主键自增 lang rop sel str string
在实际开发过程中,遇到Mysql设置主键为自增方式,插入后还需要基于主键进行后续操作,这时候就需要获取主键自增的ID,
基于xml配置获取主键的方式如下:
<insert>
...此处省略sql
<selectKey keyProperty="id" resultType="java.lang.String" order="AFTER" keyColumn="id" >
SELECT LAST_INSERT_ID() AS userid
</selectKey>
</insert>
其中: keyProperty="id"为返回实体的属性,需要有setter方法
标签:插入 还需要 实体 主键自增 lang rop sel str string
原文地址:https://www.cnblogs.com/lovechengyu/p/11927588.html