您好,登錄后才能下訂單哦!
在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ì)象中
免責(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)容。