MyBatis插入時候獲取自增主鍵方法

MyBatis 3.2.6插入時候獲取自增主鍵方法有二java

以MySQL5.5爲例:spa

方法1:code

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

注:須要Person.getId()orm

方法二:get

<insert id="insert" parameterType="Person">
        <selectKey keyProperty="id" resultType="long">
            select LAST_INSERT_ID()
        </selectKey>
        insert into person(name,pswd) values(#{name},#{pswd})
</insert>
相關文章
相關標籤/搜索