您好,登錄后才能下訂單哦!
今天小編給大家分享一下MyBatis動態SQL怎么使用的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
動態 SQL,通過 MyBatis 提供的各種標簽對條件作出判斷以實現動態拼接 SQL 語句。這里的條件判斷使用的表達式為 OGNL 表達式。常用的動態 SQL 標簽有<if>、<where>、<choose/>、<foreach>等。
MyBatis 的動態 SQL 語句,與 JSTL 中的語句非常相似。
動態 SQL,主要用于解決查詢條件不確定的情況:在程序運行期間,根據 用戶提交的查詢條件進行查詢。提交的查詢條件不同,執行的 SQL 語句不同。 若將每種可能的情況均逐一列出,對所有條件進行排列組合,將會出現大量的 SQL 語句。此時,可使用動態 SQL 來解決這樣的問題。
1、創建新的 maven 項目,加入 mybatis , mysql 驅動依賴
2、創建實體類 Student , StudentDao 接口,StudentDao.xml ,mybatis.xml , 測試類
3、使用之前的表 student。
在 mapper 的動態 SQL 中若出現大于號(>)、小于號(=),小于等于號(<=)等符號,最好將其轉換為實體符號。否則, XML 可能會出現解析出錯問題。
特別是對于小于號(<),在 XML 中是絕不能出現的。否則解析 mapper 文件會出錯。
實體符號表:
< | 小于 | < |
> | 大于 | > |
>= | 大于等于 | >= |
<= | 小于等于 | <= |
對于該標簽的執行,當 test 的值為 true 時,會將其包含的 SQL 片斷拼接 到其所在的 SQL 語句中。
語法: <if test="條件"> sql 語句的部分</if>
接口方法:
List<Student> selectStudentIf(Student student);
mapper文件:
<select id="selectStudentIf" resultType="com.bjpowernode.domain.Student"> select id,name,email,age from student where 1=1 <if test="name != null and name !='' "> and name = #{name} </if> <if test="age > 0 "> and age > #{age} </if> </select>
測試方法:
@Test public void testSelect() throws IOException { Student param = new Student(); param.setName("李力"); param.setAge(18); List<Student> studentList = studentDao.selectStudentIf(param); studentList.forEach( stu -> System.out.println(stu)); }
<if/>標簽的中存在一個比較麻煩的地方:需要在 where 后手工添加 1=1 的子句。因為,若 where 后的所有<if/>條件均為 false,而 where 后若又沒 有 1=1 子句,則 SQL 中就會只剩下一個空的 where,SQL 出錯。
所以,在 where 后,需要添加永為真子句 1=1,以防止這種情況的發生。但當數據量很大時,會嚴重影響查詢效率。
使用<where/>標簽,在有查詢條件時,可以自動添加上 where 子句;沒 有查詢條件時,不會添加 where 子句。需要注意的是,第一個<if/>標簽中的 SQL 片斷,可以不包含 and。
不過,寫上 and 也不錯,系統會將多出的 and 去掉。但其它<if/>中 SQL 片斷的 and,必須要求寫上。否則 SQL 語句將拼接出錯。
語法:<where> 其他動態 sql</where>
接口方法:
List<Student> selectStudentWhere(Student student);
mapper文件:
<select id="selectStudentWhere" resultType="com.bjpowernode.domain.Student"> select id,name,email,age from student <where> <if test="name != null and name !='' "> and name = #{name} </if> <if test="age > 0 "> and age > #{age} </if> </where> </select>
測試方法:
@Test public void testSelectWhere() throws IOException { Student param = new Student(); param.setName("李力"); param.setAge(18); List<Student> studentList = studentDao.selectStudentWhere(param); studentList.forEach( stu -> System.out.println(stu)); }
<foreach/>標簽用于實現對于數組與集合的遍歷。對其使用,需要注意:
collection 表示要遍歷的集合類型, list ,array 等。
open、close、separator 為對遍歷內容的 SQL 拼接。
語法:
<foreach collection="集合類型" open="開始的字符" close="結束的字符" item="集合中的成員" separator="集合成員之間的分隔符"> #{item 的值} </foreach>
1、遍歷List<簡單類型>
表達式中的 List 使用 list 表示,其大小使用 list.size 表示。
需求:查詢學生 id 是 1002,1005,1006
接口方法:
List<Student> selectStudentForList(List<Integer> idList);
mapper文件:
<select id="selectStudentForList" resultType="com.bjpowernode.domain.Student"> select id,name,email,age from student <if test="list !=null and list.size > 0 "> where id in <foreach collection="list" open="(" close=")" item="stuid" separator=","> #{stuid} </foreach> </if> </select>
測試方法:
@Test public void testSelectForList() { List<Integer> list = new ArrayList<>(); list.add(1002); list.add(1005); list.add(1006); List<Student> studentList = studentDao.selectStudentForList(list); studentList.forEach( stu -> System.out.println(stu)); }
2、遍歷List<對象類型>
接口方法:
List<Student> selectStudentForList2(List<Student> stuList);
mapper文件:
<select id="selectStudentForList2" resultType="com.bjpowernode.domain.Student"> select id,name,email,age from student <if test="list !=null and list.size > 0 "> where id in <foreach collection="list" open="(" close=")" item="stuobject" separator=","> #{stuobject.id} </foreach> </if> </select>
測試方法:
@Test public void testSelectForList2() { List<Student> list = new ArrayList<>(); Student s1 = new Student(); s1.setId(1002); list.add(s1); s1 = new Student(); s1.setId(1005); list.add(s1); List<Student> studentList = studentDao.selectStudentForList2(list); studentList.forEach( stu -> System.out.println(stu)); }
<sql/>標簽用于定義 SQL 片斷,以便其它 SQL 標簽復用。而其它標簽使 用該 SQL 片斷,需要使用<include/>子標簽。該<sql/>標簽可以定義 SQL 語句中的任何部分,所以<include/>子標簽可以放在動態 SQL 的任何位置。
接口方法:
List<Student> selectStudentSqlFragment(List<Student> stuList);
mapper文件:
<!--創建 sql 片段 id:片段的自定義名稱--> <sql id="studentSql"> select id,name,email,age from student </sql> <select id="selectStudentSqlFragment" resultType="com.bjpowernode.domain.Student"> <!-- 引用 sql 片段 --> <include refid="studentSql"/> <if test="list !=null and list.size > 0 "> where id in <foreach collection="list" open="(" close=")" item="stuobject" separator=","> #{stuobject.id} </foreach> </if> </select>
測試方法:
@Test public void testSelectSqlFragment() { List<Student> list = new ArrayList<>(); Student s1 = new Student(); s1.setId(1002); list.add(s1); s1 = new Student(); s1.setId(1005); list.add(s1); List<Student> studentList = studentDao.selectStudentSqlFragment(list); studentList.forEach( stu -> System.out.println(stu)); }
以上就是“MyBatis動態SQL怎么使用”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。