溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

mybatis在oracle插入對(duì)象后返回主鍵值

發(fā)布時(shí)間:2020-06-15 01:22:25 來源:網(wǎng)絡(luò) 閱讀:2339 作者:pjx1205 欄目:關(guān)系型數(shù)據(jù)庫(kù)

在mybatis中默認(rèn)插入一條記錄后,返回值為插入記錄的條數(shù)。

現(xiàn)在想獲取插入記錄后,當(dāng)前被插入的記錄的主鍵值,需在insert方法中添加如下代碼:


<insert id="insert" parameterType="cn.com.pm.ppm.model.UserInfo" >

  <selectKey resultType="java.math.BigDecimal" order="BEFORE" keyProperty="id">

           select T_USER_INFO_SEQ.nextval from dual

  </selectKey>

    insert into T_USER_INFO

    <trim prefix="(" suffix=")" suffixOverrides="," >

      <if test="id != null" >

        ID,

      </if>

        ...

</insert>


添加以下代碼后

  <selectKey resultType="java.math.BigDecimal" order="BEFORE" keyProperty="id">

           select T_USER_INFO_SEQ.nextval from dual

  </selectKey>

方法中獲取到的返回值任然是插入的記錄數(shù)

但是mybatis將主鍵值set到了插入的對(duì)象中

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI