溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mybatis動態(tài)sql之Map參數(shù)的講解

發(fā)布時間:2020-09-23 11:49:06 來源:腳本之家 閱讀:904 作者:簡樂君 欄目:編程語言

mybatis 動態(tài)sql之Map參數(shù)

Mapper文件:

<mapper namespace="com.cn.shoje.oa.modules.logistics.dao.PurcDao">
 <select id="findAll" parameterType="Map" resultType="Purchase">
 select * from prod_purchase where 1=1
 <if test="purc_id!=''"> and purc_id=#{purc_id}</if>
 <if test="prod_id!=''"> and prod_id=#{prod_id}</if>
 <if test="ch_id!=''"> and ch_id=#{ch_id}</if>
 <if test="ch_name!=''"> and ch_id in ( select ch_id from channel where ch_name
  like '%#{ch_name}%')</if>
 <if test="purc_time!=''"> and purc_time=#{purc_time} order by #{purc_time} desc
 </if>
 </select>
</mapper>

test表達(dá)式中不用再加#,$之類的取值符了,就直接這樣寫就可以取到map中key所對應(yīng)的值,而其他地方需要有#{map中的key}來取得map中該key所對應(yīng)的值

<pre name="code" class="html">

后臺傳遞到mybatis的map參數(shù),不要深究函數(shù)含義,知道下面這個map最終是傳遞到mybatis中的parameterType就夠了

public Map<String,String> parseMap(HttpServletRequest req){
 Map<String,String> map=new HashMap<String,String>();
 map.put("prod_id", prod_id);
 map.put("purc_id", purc_id );
 map.put("ch_name", ch_name );
 map.put("ch_id", ch_id);
 map.put("purc_time", purc_time);
 return map;
}

Mybatis傳入?yún)?shù)類型為Map

方式一:

mybatis更新sql語句:

<update id="publishT00_notice" parameterType="Map">
update test 
set createdate = #{createdate},
creator = #{creator}
where id in 
<foreach collection="ids" item="ids" separator="," open="(" close=")">
#{ids}
</foreach>
</update>

傳入map參數(shù)類型:

HashMap<String,Object> map = new HashMap<String, Object>();
map.put("creator", "creator");
map.put("createdate", "createdate");
String[] ids = {"1","2"};
map.put("ids", ids );

方式二:

第一步在你的mapper寫上:

List<WeixinUserLocationList> findweixinUserLocations(@Param("params") Map<String, Object> map);

注意就是注解@param 這個,是mybatis的

然后在xml中這樣寫:

<if test="params.accountId!=null">
      and a.accountid=#{params.accountId}
    </if>
    <if test="params.nickname!=null and params.nickname !=''">
      and a.nickname like '%${params.nickname}%'
    </if>
    <if test="params.beginDate!=null and params.beginDate!=''">
      and date_format(a.createtime,'%Y-%m-%d')>=${params.beginDate}
    </if>
    <if test="params.endDate!=null and params.endDate!=''">
    <![CDATA[  and date_format(a.createtime,'%Y-%m-%d')<=${params.endDate} ]]>   
    </if>

${params.nickname}這種寫法參數(shù)默認(rèn)是傳字符串,#{params.accountId}可以取Long,Integer之類的。

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,謝謝大家對億速云的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI