1. 程式人生 > >mybatis傳入引數為map時如何在mapper.xml中獲取

mybatis傳入引數為map時如何在mapper.xml中獲取

有時在開發中難免會遇到傳入的引數為map型別的時候, map的key為資料庫中的主鍵或者其他的唯一欄位, value為需要進行插入的值,在mybaits的XML檔案中進行遍歷取出map引數中的值, 有兩種方式進行處理

方法一:

xml檔案中寫法

<update id="updateInventoryBatch"  parameterType="java.util.Map"><foreach item="value" index="key" collection="inventoryMap" separator=";" >
      UPDATE yanxuan_inventory_transfer
        SET
        inventory = #{value},
        is_inventory='1',
        create_time=sysdate()
      where
        sku_id=#{key}
    
</foreach></update>
以上collection="inventoryMap" 表示的是dao中對應的map的@param的引數名稱, index="key" 中的key表示的是map的key值, item="value" 表示的map的key所對應的value值 , 故直接#{key} 和#{value}進行取值即可

   dao中的寫法

longupdateInventoryBatch(@Param("inventoryMap") HashMap<String, Integer> inventoryMap);

第二中方式:

先遍歷map的key, 得到所有的key值, 然後根據key獲取對應的value值

xml檔案中寫法

<update id="updateInventoryBatch"  parameterType="java.util.Map"><foreach item="key"  collection="inventoryMap.keys" separator=";" >
      UPDATE yanxuan_inventory_transfer
        SET
        inventory = #{inventoryMap[${key}]},
        is_inventory='1',
        create_time=sysdate()
      where
        sku_id=
#{key}</foreach></update>
上collection="inventoryMap.keys" 表示的遍歷map的key, 同理collection="inventoryMap.values"表示的是遍歷的map的value, item="key" 表示的是map的key,   #{inventoryMap[${key}]}取出的是inventoryMap  key所對應的value, 

注意: ${key} 必須為使用${}取值, 不能使用#{}, 因為#{} 會自動加上"" 這樣是獲取不到value值的.

以上是演示mybatis進行批量更新的sql 如果想要實現的話 需要在jdbc_url 連結後面加上&allowMultiQueries=true

允許執行多個SQL語句才能正常執行.