Mybatis 示例之 SelectKey

SelectKey在Mybatis中是爲了解決Insert數據時不支持主鍵自動生成的問題,他能夠很隨意的設置生成主鍵的方式。html

無論SelectKey有多好,儘可能不要遇到這種狀況吧,畢竟很麻煩。java


selectKey Attributes
屬性 描述
keyProperty selectKey 語句結果應該被設置的目標屬性。
resultType 結果的類型。MyBatis 一般能夠算出來,可是寫上也沒有問題。MyBatis 容許任何簡單類型用做主鍵的類型,包括字符串。
order 這能夠被設置爲 BEFORE 或 AFTER。若是設置爲 BEFORE,那麼它會首先選擇主鍵,設置 keyProperty 而後執行插入語句。若是設置爲 AFTER,那麼先執行插入語句,而後是 selectKey 元素-這和如 Oracle 數據庫類似,能夠在插入語句中嵌入序列調用。
statementType 和前面的相 同,MyBatis 支持 STATEMENT ,PREPARED 和CALLABLE 語句的映射類型,分別表明 PreparedStatement 和CallableStatement 類型。

SelectKey須要注意order屬性,像Mysql一類支持自動增加類型的數據庫中,order須要設置爲after纔會取到正確的值。mysql

像Oracle這樣取序列的狀況,須要設置爲before,不然會報錯。sql

另外在用Spring管理事務時,SelectKey和插入在同一事務當中,於是Mysql這樣的狀況因爲數據未插入到數據庫中,因此是得不到自動增加的Key。取消事務管理就不會有問題。數據庫

下面是一個xml和註解的例子,SelectKey很簡單,兩個例子就夠了:oracle

<insert id="insert" parameterType="map">  
    insert into table1 (name) values (#{name})  
    <selectKey resultType="java.lang.Integer" keyProperty="id">  
      CALL IDENTITY()  
    </selectKey>  
</insert> 

上面xml的傳入參數是map,selectKey會將結果放到入參數map中。用POJO的狀況同樣,可是有一點須要注意的是,keyProperty對應的字段在POJO中必須有相應的setter方法,setter的參數類型還要一致,不然會報錯。ide

@Insert("insert into table2 (name) values(#{name})")  
@SelectKey(statement="call identity()", keyProperty="nameId", before=false, resultType=int.class)  
int insertTable2(Name name);  

 

上面是註解的形式。spa

 

在使用ibatis插入數據進數據庫的時候,會用到一些sequence的數據,有些狀況下,在插入完成以後還須要將sequence的值返回,而後才能進行下一步的操做。 
      使用ibatis的selectKey就能夠獲得sequence的值,同時也會將值返回。不過對於不一樣的數據庫有不一樣的操做方式。 
      對於oracle: 
      code

<insert id="insertUser" parameterClass="ibatis.User"> 
          <selectKey resultClass="long" keyProperty="id"> 
              select SEQ_USER_ID.nextval as id from dual 
          </selectKey> 
           insert into user 
          (id,name,password) 
          values 
          (#id#,#name#,#password#) 
</insert> 

 該句話執行完以後,傳進來的參數User對象DO裏的id字段就會被賦值成sequence的值。 xml


對於mysql 

<insert id="insertUser" parameterClass="ibatis.User"> 
          insert into user 
          (name,password) 
          values 
          (#name#,#password#) 
          <selectKey resultClass="long" keyProperty="id">  
             SELECT LAST_INSERT_ID() AS ID  
        </selectKey>  
</insert> 

       將selectKey放在insert以後,經過LAST_INSERT_ID() 得到剛插入的自動增加的id的值。

 

<insert id="addMetaReport" parameterClass="metaRpo">  
        <![CDATA[  
            insert IGNORE into rpo_trackingMeta(trackingMeta_id, trackingMeta_title, company_id, subCompany_id, meta_type,  
            delegation_at, report_cycle, start_at, end_at, matched_num_new, matched_num_takeoff, matched_num_total,  
            created_at, created_by, updated_at, updated_by)  
            select    #trackingMetaId#  
                    , #metaTitle#  
                    , #companyId#  
                    , #subCompanyId#  
                    , #metaType#  
                    , #delegationAt#  
                    , #reportCycle#  
                    , #startAt#  
                    , #endAt#  
                    , sum(case when created_at >= #startAt# and created_at < #endAt# then 1 else 0 end)  
                    , 0  
                    , count(*)  
                    , now()  
                    , #createdBy#  
                    , now()  
                    , #updatedBy#  
          from matchedPage where task_id = #orderId#  
          and verification = 'mediadna';  
           ]]>  
          <selectKey keyProperty="id" resultClass="int">  
            SELECT IF(row_count() > 0, last_insert_id(), 0) AS id FROM dual  
        </selectKey>  
</insert>
相關文章
相關標籤/搜索