上篇文章《深入淺出Mybatis系列(八)---mapper映射檔配置之select、resultMap》簡單介紹了mybatis的查詢,至此,CRUD都已講完。本文將介紹mybatis強大的動態SQL。
那麼,問題來了: 什麼是動態SQL? 動態SQL有什麼作用?
傳統的使用JDBC的方法,相信大家在組合複雜的的SQL語句的時候,需要去拼接,稍不注意哪怕少了個空格,都會導致錯誤。 Mybatis的動態SQL功能正是為了解決這個問題, 其透過 if, choose, when, otherwise, trim, where, set, foreach標籤,可組合成非常靈活的SQL語句,從而提高開發人員的效率。下面就去感受Mybatis動態SQL的魅力吧:
#1. if: 你們能判斷,我也能判斷!
當程式猿,誰不懂if ! 在mybatis中也能用if 啦:
<select id="findUserById" resultType="user"> select * from user where <if test="id != null"> id=#{id} </if> and deleteFlag=0;</select>
上面範例: 如果傳入的id 不為空, 那麼才會SQL才拼接id = #{id}。 這相信大家看一樣就能明白,不多說。
細心的人會發現一個問題:「你這不對啊!要是你傳入的 id為null, 那麼你這最終的SQL語句不就成了select * from user where and deleteFlag=0,這語句有問題!拼接條件神馬的都是浮雲!
咱們透過where改造一下上面的例子:<select id="findUserById" resultType="user">
select * from user
<where>
<if test="id != null">
id=#{id} </if>
and deleteFlag=0; </where>
</select>
上面的where標籤,其實用trim 可以表示如下:
<trim prefix="WHERE" prefixOverrides="AND |OR "> ... </trim>
它的意思是:當WHERE後緊接在AND或則OR的時候,就去除AND或者OR。 除了WHERE以外, 其實還有一個比較經典的實現,那就是SET。
4. set: 信我,不出錯!
<update id="updateUser" parameterType="com.dy.entity.User"> update user set <if test="name != null"> name = #{name}, </if> <if test="password != null"> password = #{password}, </if> <if test="age != null"> age = #{age} </if> <where> <if test="id != null"> id = #{id} </if> and deleteFlag = 0; </where></update>
問題又來了: 「如果我只有name不為null, 那麼這SQL不就成了update set name = #{name}, where ...... .. ? 你那name後面那逗號會導致出錯啊!以下是透過set標籤改造後:
<update id="updateUser" parameterType="com.dy.entity.User"> update user <set> <if test="name != null">name = #{name},</if> <if test="password != null">password = #{password},</if> <if test="age != null">age = #{age},</if> </set> <where> <if test="id != null"> id = #{id} </if> and deleteFlag = 0; </where></update>
这个用trim 可表示为:
<trim prefix="SET" suffixOverrides=","> ...</trim>
WHERE是使用的 prefixOverrides(前缀), SET是使用的 suffixOverrides (后缀), 看明白了吧!
5. foreach: 你有for, 我有foreach, 不要以为就你才屌!
java中有for, 可通过for循环, 同样, mybatis中有foreach, 可通过它实现循环,循环的对象当然主要是java容器和数组。
<select id="selectPostIn" resultType="domain.blog.Post"> SELECT * FROM POST P WHERE ID in <foreach item="item" index="index" collection="list" open="(" separator="," close=")"> #{item} </foreach></select>
将一个 List 实例或者数组作为参数对象传给 MyBatis,当这么做的时候,MyBatis 会自动将它包装在一个 Map 中并以名称为键。List 实例将会以“list”作为键,而数组实例的键将是“array”。同样, 当循环的对象为map的时候,index其实就是map的key。
6. choose: 我选择了你,你选择了我!
Java中有switch, mybatis有choose。
<select id="findActiveBlogLike" resultType="Blog"> SELECT * FROM BLOG WHERE state = ‘ACTIVE’ <choose> <when test="title != null"> AND title like #{title} </when> <when test="author != null and author.name != null"> AND author_name like #{author.name} </when> <otherwise> AND featured = 1 </otherwise> </choose></select>
以上例子中: 当title和author都不为null的时候, 那么选择二选一(前者优先), 如果都为null, 那么就选择 otherwise中的, 如果tilte和author只有一个不为null, 那么就选择不为null的那个。
纵观mybatis的动态SQL, 强大而简单, 相信大家简单看一下就能使用了。
好啦,本次就写到这!下篇文章将结合mybatis的源码分析一次sql语句执行的整个过程。
以上就是深入浅出Mybatis系列(九)---强大的动态SQL的内容,更多相关内容请关注PHP中文网(www.php.cn)!