码迷,mamicode.com
首页 > 其他好文 > 详细

MyBatis插入时候获取自增主键方法

时间:2014-11-14 18:10:20      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   sp   java   on   bs   ad   line   

MyBatis 3.2.6插入时候获取自增主键方法有二

 以MySQL5.5为例:

 方法1:

<insert id="insert" parameterType="Person" useGeneratedKeys="true" keyProperty="id">
        insert into person(name,pswd) values(#{name},#{pswd})
    </insert>

方法2:

<insert id="insert" parameterType="Person">
        <selectKey keyProperty="id" resultType="long">
            select LAST_INSERT_ID()
        </selectKey>
        insert into person(name,pswd) values(#{name},#{pswd})
    </insert>

插入前实体id属性为0;

插入后实体id属性为保存后自增的id;


MyBatis插入时候获取自增主键方法

标签:style   color   ar   sp   java   on   bs   ad   line   

原文地址:http://my.oschina.net/ydsakyclguozi/blog/344911

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!