Mybatis 插入數據後返回主鍵值

Oracle中獲取剛剛插入記錄的主鍵值:

<insert id="insertSelective" parameterType="com.jxxx.p2pp.model.UUserInfo">
    <selectKey resultType="java.math.BigDecimal" order="BEFORE" keyProperty="id">
	   SELECT U_USER_INFO_SEQ.Nextval as ID from DUAL
   </selectKey>
	
    insert into U_USER_INFO
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        ID,
      </if>
      <if test="userName != null" >
        USER_NAME,
      </if>
      <if test="realName != null" >
        REAL_NAME,
      </if>
    .....
</insert>

   

要點是這裏使用了selectKey來定義返回新生成的PrimaryKey,這個狀況僅僅適用於Oracle。java

須要注意的地方是在Java代碼中使用Integer類型,可是在MyBatis的映射文件中,使用java.math.BigDecimal類型,不然會報類型轉換或者不匹配的錯誤。spring

MySQL與SQL Server獲取剛剛插入數據的主鍵值:

    <insert id="insert" parameterType="Spares"   
            useGeneratedKeys="true" keyProperty="id">  
            insert into spares(spares_id,spares_name,  
                spares_type_id,spares_spec)  
            values(#{id},#{name},#{typeId},#{spec})  
        </insert>

使用useGeneratedKeys/KeyProperty來實現插入數據的時候,來完成新生成主鍵的返回。sql


其中異常信息的解決:oracle

異常信息:ide

   org.springframework.jdbc.UncategorizedSQLException: Error getting generated key or setting result to parameter object. Cause: java.sql.SQLException: 無效的列類型: getBigDecimal not implemented for class oracle.jdbc.driver.T4CRowidAccessor
; uncategorized SQLException for SQL []; SQL state [99999]; error code [17004]; 無效的列類型: getBigDecimal not implemented for class oracle.jdbc.driver.T4CRowidAccessor; nested exception is java.sql.SQLException:
無效的列類型: getBigDecimal not implemented for class oracle.jdbc.driver.T4CRowidAccessorspa


問題解決:.net

    問題是在Java代碼中設置返回的主鍵數據類型,其中返回的數據類型爲java.lang.Integer,而非BigDecimal和Long. 可是在MyBatis中的映射文件中的類型爲java.math.BigDecimal.code


轉自:MyBatis返回主鍵值orm

相關文章
相關標籤/搜索