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

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

 

以MySQL5.5爲例:it

 

方法1:ast

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

 

方法2:select

    <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;di

Face your past without regret. Handle your present with confidence.Prepare for future without fear. keep the faith and drop the fear. 面對過去無怨無悔,把握如今充滿信心,備戰將來無所畏懼。保持信念,克服恐懼!一點一滴的積累,一點一滴的沉澱,學技術須要不斷的積澱!
相關文章
相關標籤/搜索