<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
動態 SQL 是 MyBatis 的強大特性之一。
如果你使用過 JDBC 或其它類似的框架,你應該能理解根據不同條件拼接 SQL 語句有多痛苦,例如拼接時要確保不能忘記新增必要的空格,還要注意去掉列表最後一個列名的逗號。利用動態 SQL,可以徹底擺脫這種痛苦。
使用動態 SQL 並非一件易事,但藉助可用於任何 SQL 對映語句中的強大的動態 SQL 語言,MyBatis 顯著地提升了這一特性的易用性。
$ {}通過${}可以將parameterType傳入的內容拼接在sql中,不能防止sql注入,但是有時方便
例:
SELECT * FROM USER WHERE username LIKE '%${name}%'
再比如order by排序,如果將列名通過引數傳入sql,根據傳的列名進行排序,應該寫為:
ORDER BY ${columnName}
如果使用#{}將無法實現此功能。
Java 類
public class UserVo { private Administration adm; //自定義使用者擴充套件類 private UserCustom userCustom; }
xml檔案
<select id="findUserList" parameterType="userVo" resultType="UserCustom"> SELECT * FROM adm where adm.sex= #{userCustom.sex} and adm.username LIKE '%${userCustom.username}%' </select>
mybatis 的動態sql語句是基於OGNL表示式的。可以方便的在 sql 語句中實現某些邏輯.
總體說來mybatis 動態SQL 語句主要有以下幾類:
<select id="getUnitListByUserId" resultType="com.xjrsoft.module.customer.stock.inv_storer.vo.InvStorerVo" parameterType="string"> SELECT ins.USER_ID as user_id, ins.OPERATING_UNIT_ID as operating_unit_id, mou.`NAME` as operating_unit_name FROM `inv_storer` ins left join md_operating_unit mou on ins.OPERATING_UNIT_ID = mou.F_Id where ins.F_DeleteMark = 0 and ins.F_EnabledMark = 1 <if test="userId != null and userId != ''"> and ins.USER_ID = #{userId} </if> </select>
choose (when,otherwize) ,相當於java 語言中的 switch ,與 jstl 中的choose 很類似
<select id="dynamicChooseTest" parameterType="Blog" resultType="Blog"> select * from t_blog where 1 = 1 <choose> <when test="title != null"> and title = #{title} </when> <when test="content != null"> and content = #{content} </when> <otherwise> and owner = "owner1" </otherwise> </choose> </select>
詳解
小結
所以上述語句的意思非常簡單,當title!=null的時候就輸出and titlte = #{title},不再往下判斷條件,當title為空且content!=null的時候就輸出and content = #{content},當所有條件都不滿足的時候就輸出otherwise中的內容。
trim (對包含的內容加上 prefix,或者 suffix 等,字首,字尾)
<select id="dynamicTrimTest" parameterType="Blog" resultType="Blog"> select * from t_blog <trim prefix="where" prefixOverrides="and |or"> <if test="title != null"> title = #{title} </if> <if test="content != null"> and content = #{content} </if> <if test="owner != null"> or owner = #{owner} </if> </trim> </select>
詳解
正因為trim有這樣的功能,所以我們也可以非常簡單的利用trim來代替where元素的功能。
小結
trim標記是一個格式化的標記,可以完成set或者是where標記的功能,如下程式碼:
select * from user <trim prefix="WHERE" prefixoverride="AND |OR"> <if test="name != null and name.length()>0"> AND name=#{name} </if> <if test="gender != null and gender.length()>0"> AND gender=#{gender} </if> </trim>
假如說name和gender的值都不為null的話列印的SQL為:
select * from user where name = 'xx' and gender = 'xx'
在紅色標記的地方是不存在第一個and的,上面兩個屬性的意思如下:
update user <trim prefix="set" suffixoverride="," suffix=" where id = #{id} "> <if test="name != null and name.length()>0"> name=#{name} , </if> <if test="gender != null and gender.length()>0"> gender=#{gender} , </if> </trim>
假如說name和gender的值都不為null的話列印的SQL為:
update user set name='xx' , gender='xx' where id='x'
在紅色標記的地方不存在逗號,而且自動加了一個set字首和where字尾,上面三個屬性的意義如下,其中prefix意義如上:
suffixoverride:去掉最後一個逗號(也可以是其他的標記,就像是上面字首中的and一樣)
suffix:字尾
<select id="dynamicWhereTest" parameterType="Blog" resultType="Blog"> select * from t_blog <where> <if test="title != null"> title = #{title} </if> <if test="content != null"> and content = #{content} </if> <if test="owner != null"> and owner = #{owner} </if> </where> </select>
詳解:
此外,在where元素中你不需要考慮空格的問題,MyBatis會智慧的幫你加上。
小結
像上述例子中,如果title=null, 而content != null,那麼輸出的整個語句會是:
select * from t_blog where content = #{content}
而不是select * from t_blog where and content = #{content},因為MyBatis會智慧的把首個and 或 or 給忽略。
foreach (在實現 mybatis in 語句查詢時特別有用):
foreach的主要用在構建in條件中,它可以在SQL語句中進行迭代一個集合。foreach元素的屬性主要有item,index,collection,open,separator,close。
foreach元素屬性
在使用foreach的時候最關鍵的也是最容易出錯的就是collection屬性,該屬性是必須指定的,但是在不同情況下,該屬性的值是不一樣的,主要有一下3種情況:
1、單引數List的型別
<select id="getStoreroomListByIds" parameterType="string" resultType="com.xjrsoft.module.customer.inv_shift_head.invShiftHead.dto.InvStoreroomDto"> SELECT info.* FROM ( SELECT isr.F_Id AS storeroom_id, isr.OPERATING_UNIT_ID as unit_id, mou.NAME as unit_name FROM `inv_storeroom` isr LEFT JOIN `md_operating_unit` AS mou ON isr.OPERATING_UNIT_ID = mou.F_Id WHERE isr.F_DeleteMark = 0 AND isr.F_EnabledMark = 1 AND mou.F_DeleteMark = 0 AND mou.F_EnabledMark = 1 ) AS info <where> <if test="ids != null and ids != ''"> info.storeroom_id in <foreach collection="ids" item="item" close=")" open="(" separator=","> #{item} </foreach> </if> </where> </select>
上述collection的值為list,對應的Mapper是這樣的:
/** * 根據庫房id獲取經營單元 * * @param ids * @return */ List<InvStoreroomDto> getStoreroomListByIds(@Param("ids") List<String> ids);
2、陣列型別的引數
<select id="dynamicForeach2Test" resultType="com.mybatis.entity.User"> select * from t_user where id in <foreach collection="array" index="index" item="item" open="(" separator="," close=")"> #{item} </foreach> </select>
對應mapper:
public List<User> dynamicForeach2Test(int[] ids);
3、Map型別的引數
<select id="dynamicForeach3Test" resultType="com.mybatis.entity.User"> select * from t_user where username like '%${username}%' and id in <foreach collection="ids" index="index" item="item" open="(" separator="," close=")"> #{item} </foreach> </select>
mapper 應該是這樣的介面:
/**mybatis Foreach測試 */ public List<User> dynamicForeach3Test(Map<String, Object> params);
到此這篇關於Mybatis中xml的動態sql實現範例的文章就介紹到這了,更多相關Mybatis xml的動態sql內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45