mybatis where 標(biāo)簽使用
我們經(jīng)常在動(dòng)態(tài)構(gòu)造sql時(shí),為防止注入或防止語(yǔ)句不當(dāng)時(shí)會(huì)使用where 1=1
<select id="selectGroupByEmployeeNum" resultMap="BaseResultMap" parameterType="com.dao.impl.ZcChatGroup">
select
*
from
zc_chat_group
WHERE 1=1
<if test="id!=null">
id= #{id}
</if>
<if test="leaderNum!=null">
and leader_num = #{leaderNum}
</if>
<if test="groupType!=null">
and group_type = #{groupType}
</if>
</select>但在使用where標(biāo)簽可以簡(jiǎn)化這條語(yǔ)句
<select id="selectGroupByEmployeeNum" resultMap="BaseResultMap" parameterType="com.dao.impl.ZcChatGroup">
select
*
from
zc_chat_group
<where>
<if test="id!=null">
id= #{id}
</if>
<if test="leaderNum!=null">
and leader_num = #{leaderNum}
</if>
<if test="groupType!=null">
and group_type = #{groupType}
</if>
</where>
</select>這條sql執(zhí)行時(shí),如果id這個(gè)參數(shù)為null,則這條語(yǔ)句的執(zhí)行結(jié)果為
select * from zc_chat_group where leader_num = ‘xx' and group_type = ‘xx'
這個(gè)‘where’標(biāo)簽會(huì)知道如果它包含的標(biāo)簽中有返回值的話,它就會(huì)插入一個(gè)‘where’。此外,如果標(biāo)簽返回的內(nèi)容是以AND 或OR開頭的,則會(huì)把它去除掉。
Mybatis where標(biāo)簽的使用
為了能達(dá)到MySQL性能的調(diào)優(yōu),我們可以基于Mybatis的where標(biāo)簽來(lái)進(jìn)行實(shí)現(xiàn)。where標(biāo)簽是頂層的遍歷標(biāo)簽,需要配合if標(biāo)簽使用,單獨(dú)使用無(wú)意義。通常有下面兩種實(shí)現(xiàn)形式。
方式一:
<select id="selectSelective" resultType="com.secbro.entity.User">
select * from t_user
<where>
<if test="username != null and username != ''">
username = #{username}
</if>
<if test="idNo != null and idNo != ''">
and id_no = #{idNo}
</if>
</where>
</select>方式二:
<select id="selectSelective" resultType="com.secbro.entity.User">
select * from t_user
<where>
<if test="username != null and username != ''">
and username = #{username}
</if>
<if test="idNo != null and idNo != ''">
and id_no = #{idNo}
</if>
</where>
</select>仔細(xì)觀察會(huì)發(fā)現(xiàn),這兩種方式的區(qū)別在于第一if條件中的SQL語(yǔ)句是否有and。
這里就涉及到where標(biāo)簽的兩個(gè)特性:
- 第一,只有if標(biāo)簽有內(nèi)容的情況下才會(huì)插入where子句;
- 第二,若子句的開通為 “AND” 或 “OR”,where標(biāo)簽會(huì)將它替換去除;
所以說(shuō),上面的兩種寫法都是可以了,Mybatis的where標(biāo)簽會(huì)替我們做一些事情。
但需要注意的是:where標(biāo)簽只會(huì) 智能的去除(忽略)首個(gè)滿足條件語(yǔ)句的前綴。所以建議在使用where標(biāo)簽時(shí),每個(gè)語(yǔ)句都最好寫上 and 前綴或者 or 前綴,否則像以下寫法就會(huì)出現(xiàn)問(wèn)題:
<select id="selectSelective" resultType="com.secbro.entity.User">
select * from t_user
<where>
<if test="username != null and username != ''">
username = #{username}
</if>
<if test="idNo != null and idNo != ''">
id_no = #{idNo}
</if>
</where>
</select>生成的SQL語(yǔ)句如下:
select * from t_user WHERE username = ? id_no = ?
很顯然,語(yǔ)法是錯(cuò)誤的。
因此,在使用where標(biāo)簽時(shí),建議將所有條件都添加上and或or;
進(jìn)階:自定義trim標(biāo)簽
上面使用where標(biāo)簽可以達(dá)到拼接條件語(yǔ)句時(shí),自動(dòng)去掉首個(gè)條件的and或or,那么如果是其他自定義的關(guān)鍵字是否也能去掉呢?
此時(shí),where標(biāo)簽就無(wú)能為力了,該trim標(biāo)簽上場(chǎng)了,它也可以實(shí)現(xiàn)where標(biāo)簽的功能。
<select id="selectSelective" resultType="com.secbro.entity.User">
select * from t_user
<trim prefix="where" prefixOverrides="and | or ">
<if test="username != null and username != ''">
and username = #{username}
</if>
<if test="idNo != null and idNo != ''">
and id_no = #{idNo}
</if>
</trim>
</select>將上面基于where標(biāo)簽的寫改寫為trim標(biāo)簽,發(fā)現(xiàn)執(zhí)行效果完全一樣。而且trim標(biāo)簽具有了更加靈活的自定義性。
where語(yǔ)句的坑
另外,在使用where語(yǔ)句或其他語(yǔ)句時(shí)一定要注意一個(gè)地方,那就是:注釋的使用。
先來(lái)看例子:
<select id="selectSelective" resultType="com.secbro.entity.User">
select * from t_user
<where>
<if test="username != null and username != ''">
and username = #{username}
</if>
<if test="idNo != null and idNo != ''">
/* and id_no = #{idNo}*/
and id_no = #{idNo}
</if>
</where>
</select>上述SQL語(yǔ)句中添加了 /**/的注釋,生成的SQL語(yǔ)句為:
select * from t_user WHERE username = ? /* and id_no = ?*/ and id_no = ?
執(zhí)行時(shí),直接報(bào)錯(cuò)。
還有一個(gè)示例:
<select id="selectSelective" resultType="com.secbro.entity.User">
select * from t_user
<where>
<if test="username != null and username != ''">
-- and username = #{username}
and username = #{username}
</if>
<if test="idNo != null and idNo != ''">
and id_no = #{idNo}
</if>
</where>
</select>生成的SQL語(yǔ)句為:
select * from t_user WHERE -- and username = ? and username = ? and id_no = ?
同樣會(huì)導(dǎo)致報(bào)錯(cuò)。
這是因?yàn)槲覀兪褂?XML 方式配置 SQL 時(shí),如果在 where 標(biāo)簽之后添加了注釋,那么當(dāng)有子元素滿足條件時(shí),除了 < !-- --> 注釋會(huì)被 where 忽略解析以外,其它注釋例如 // 或 /**/ 或 -- 等都會(huì)被 where 當(dāng)成首個(gè)子句元素處理,導(dǎo)致后續(xù)真正的首個(gè) AND 子句元素或 OR 子句元素沒能被成功替換掉前綴,從而引起語(yǔ)法錯(cuò)誤。
同時(shí),個(gè)人在實(shí)踐中也經(jīng)常發(fā)現(xiàn)因?yàn)樵赬ML中使用注釋不當(dāng)導(dǎo)致SQL語(yǔ)法錯(cuò)誤或執(zhí)行出錯(cuò)誤的結(jié)果。強(qiáng)烈建議,非必要,不要在XML中注釋掉SQL,可以通過(guò)版本管理工具來(lái)追溯歷史記錄和修改。
小結(jié)
本文基于Mybatis中where標(biāo)簽的使用,展開講了它的使用方式、特性以及拓展到trim標(biāo)簽的替代作用,同時(shí),也提到了在使用時(shí)可能會(huì)出現(xiàn)的坑。內(nèi)容雖然簡(jiǎn)單,但如果能夠很好地實(shí)踐、避免踩坑也是能力的體現(xiàn)。
到此這篇關(guān)于mybatis where 標(biāo)簽使用的文章就介紹到這了,更多相關(guān)mybatis where標(biāo)簽內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
從零開始讓你的Spring?Boot項(xiàng)目跑在Linux服務(wù)器
這篇文章主要給大家介紹了如何從零開始讓你的Spring?Boot項(xiàng)目跑在Linux服務(wù)器的相關(guān)資料,由于springboot是內(nèi)嵌了tomcat,所以可以直接將項(xiàng)目打包上傳至服務(wù)器上,需要的朋友可以參考下2021-11-11
Java編程實(shí)現(xiàn)服務(wù)器端支持?jǐn)帱c(diǎn)續(xù)傳的方法(可支持快車、迅雷)
這篇文章主要介紹了Java編程實(shí)現(xiàn)服務(wù)器端支持?jǐn)帱c(diǎn)續(xù)傳的方法,涉及Java文件傳輸?shù)南嚓P(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-11-11
Java中將File轉(zhuǎn)化為MultipartFile的操作
這篇文章主要介紹了Java中將File轉(zhuǎn)化為MultipartFile的操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2020-10-10
Spring bean的實(shí)例化和IOC依賴注入詳解
這篇文章主要介紹了Spring bean的實(shí)例化和IOC依賴注入詳解,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2019-03-03
springboot+camunda實(shí)現(xiàn)工作流的流程分析
Camunda是基于Java語(yǔ)言,支持BPMN標(biāo)準(zhǔn)的工作流和流程自動(dòng)化框架,并且還支持CMMN規(guī)范,DMN規(guī)范,本文給大家介紹springboot+camunda實(shí)現(xiàn)工作流的流程分析,感興趣的朋友一起看看吧2021-12-12
SpringBoot項(xiàng)目中連接SQL Server的三種方式
連接SQL Server是許多Spring Boot項(xiàng)目中常見的需求之一,本文主要介紹了SpringBoot項(xiàng)目中連接SQL Server的三種方式,具有一定的參考價(jià)值 ,感興趣的可以了解一下2023-09-09

