Mybatis 中获取添加的自增主键ID(针对mysql)

分享一篇博客,主要就是针对在我们使用SSM的时候,在.xml中获取<insert></insert> 时的自增主键Id,由于好久没有,这个时候使用,有点生疏,就在这里写个笔记,以免出现类似的情况。。。

我记得刚开始学mybatis时,做个学生课程的CRUD时,在获取添加时主键ID时,使用的是 ,查一下表中的max(id) ,呵呵,当后来学到了分布式,考虑到并发量的时候,我一下子蒙了,于是就研究了一下子,主要的时我们要熟能生巧。。。

一般这种情况处理有两种方法(在.xml中配置):

~ 使用sql语句

~ 使用属性

一种:使用sql语句

<insert id="add" parameterType="org.stm.entity.Student">
insert into ssm_student(name,age,birthday,sex) value(#{name},#{age},#{birthday},#{sex})
<selectKey keyProperty="id" order="AFTER" resultType="int">
select last_insert_id()
</selectKey>
</insert>

二种:在insert节点的userGeneratedKeys = true 设置向生成主键,然后keyProperty=”id” 把生成的主键指向属性

<insert id="add" parameterType="org.stm.entity.Student" userGeneratedKeys=true keyProperty="id">
insert into ssm_student(name,age,birthday,sex) value(#{name},#{age},#{birthday},#{sex})
</insert>

希望对大家有用,也希望对我有用~~~

上一篇:Flex移动布局中单行和双行布局的区别以及使用


下一篇:css常见的各种布局上(两列布局)