mybatis的selectKey作用詳解

mybatis的selectKey作用

當我們使用id自增操作Mybatis時,需要返回最新插入的id的話,可以進行如下操作:

<selectKey resultType="java.lang.Integer" order="AFTER" keyProperty="id">
SELECT LAST_INSERT_ID() AS ID 
</selectKey> 

在insert中添加即可:

<insert id="insert" parameterType="com.pinyougou.pojo.TbGoods" >
    <selectKey resultType="java.lang.Long" order="AFTER" keyProperty="id">
      SELECT LAST_INSERT_ID() AS id
    </selectKey>
    insert into tb_goods (id, seller_id, goods_name,
      default_item_id, audit_status, is_marketable, 
      brand_id, caption, category1_id, 
      category2_id, category3_id, small_pic, 
      price, type_template_id, is_enable_spec, 
      is_delete)
    values (#{id,jdbcType=BIGINT}, #{sellerId,jdbcType=VARCHAR}, #{goodsName,jdbcType=VARCHAR}, 
      #{defaultItemId,jdbcType=BIGINT}, #{auditStatus,jdbcType=VARCHAR}, #{isMarketable,jdbcType=VARCHAR}, 
      #{brandId,jdbcType=BIGINT}, #{caption,jdbcType=VARCHAR}, #{category1Id,jdbcType=BIGINT}, 
      #{category2Id,jdbcType=BIGINT}, #{category3Id,jdbcType=BIGINT}, #{smallPic,jdbcType=VARCHAR}, 
      #{price,jdbcType=DECIMAL}, #{typeTemplateId,jdbcType=BIGINT}, #{isEnableSpec,jdbcType=VARCHAR}, 
      #{isDelete,jdbcType=VARCHAR})
  </insert>

然後操作int newId = goodsMapper.insert(goods.getGoods()); 就能拿到最新加入的ID信息瞭 

mybatis selectKey 失效問題踩坑

  • selectKey 會將 SELECT LAST_INSERT_ID()的結果放入到傳入的實體類的主鍵裡面,
  • keyProperty對應的實體類中的主鍵的屬性名,這裡是 實體類中的id,因為它跟數據庫的主鍵對應order
  • AFTER 表示 SELECT LAST_INSERT_ID() 在insert執行之後執行,多用與自增主鍵,
  • BEFORE 表示 SELECTLAST_INSERT_ID() 在insert執行之前執行,這樣的話就拿不到主鍵瞭,這種適合那種主鍵不是自增的類型

resultType 主鍵類型

<insert id="insertCheckGroup"  parameterType="com.zyl.pojo.CheckGroup">
        <selectKey resultType="int" keyProperty="id" order="AFTER">
            SELECT LAST_INSERT_ID()
        </selectKey>
        insert into check_group (name) value (#{name});
</insert>

當使用瞭selectkey時 Dao接口請勿使用@Param 映射註解,會導致selectKey標簽失效

int insertCheckGroup(CheckGroup checkGroup);

如果傳多個參數需使用@Param時

int insertCheckGroup(@Param("test") CheckGroup checkGroup);

xml標簽keyProperty對應主鍵名稱時應加上test.

<insert id="insertCheckGroup"  parameterType="com.zyl.pojo.CheckGroup">
        <selectKey resultType="int" keyProperty="test.id" order="AFTER">
            SELECT LAST_INSERT_ID()
        </selectKey>
        insert into check_group (name) value (#{name});
</insert>

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: