91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何在MyBatis中實現模糊查詢

發布時間:2021-05-14 17:53:17 來源:億速云 閱讀:1311 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關如何在MyBatis中實現模糊查詢,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

數據庫表名為test_student,初始化了幾條記錄,如圖: 

如何在MyBatis中實現模糊查詢 

起初我在MyBatis的mapper文件中是這樣寫的:

 <select id="searchStudents" resultType="com.example.entity.StudentEntity"
  parameterType="com.example.entity.StudentEntity">
  SELECT * FROM test_student
  <where>
   <if test="age != null and age != '' and compare != null and compare != ''">
    age
    ${compare}
    #{age}
   </if>
   <if test="name != null and name != ''">
    AND name LIKE '%#{name}%'
   </if>
   <if test="address != null and address != ''">
    AND address LIKE '%#{address}%'
   </if>
  </where>
  ORDER BY id
 </select>

寫完后自我感覺良好,很開心的就去跑程序了,結果當然是報錯了:

如何在MyBatis中實現模糊查詢

經百度得知,這么寫經MyBatis轉換后(‘%#{name}%')會變為(‘%?%'),而(‘%?%')會被看作是一個字符串,所以Java代碼在執行找不到用于匹配參數的 ‘?' ,然后就報錯了。

解決方法

1.用${…}代替#{…}

<select id="searchStudents" resultType="com.example.entity.StudentEntity"
  parameterType="com.example.entity.StudentEntity">
  SELECT * FROM test_student
  <where>
   <if test="age != null and age != '' and compare != null and compare != ''">
    age
    ${compare}
    #{age}
   </if>
   <if test="name != null and name != ''">
    AND name LIKE '%${name}%'
   </if>
   <if test="address != null and address != ''">
    AND address LIKE '%${address}%'
   </if>
  </where>
  ORDER BY id
 </select>

查詢結果如下圖:

如何在MyBatis中實現模糊查詢

注:使用${…}不能有效防止SQL注入,所以這種方式雖然簡單但是不推薦使用!!!

2.把'%#{name}%'改為”%”#{name}”%”

 <select id="searchStudents" resultType="com.example.entity.StudentEntity"
  parameterType="com.example.entity.StudentEntity">
  SELECT * FROM test_student
  <where>
   <if test="age != null and age != '' and compare != null and compare != ''">
    age
    ${compare}
    #{age}
   </if>
   <if test="name != null and name != ''">
    AND name LIKE "%"#{name}"%"
   </if>
   <if test="address != null and address != ''">
    AND address LIKE "%"#{address}"%"
   </if>
  </where>
  ORDER BY id
 </select>

查詢結果:

如何在MyBatis中實現模糊查詢

3.使用sql中的字符串拼接函數

<select id="searchStudents" resultType="com.example.entity.StudentEntity"
  parameterType="com.example.entity.StudentEntity">
  SELECT * FROM test_student
  <where>
   <if test="age != null and age != '' and compare != null and compare != ''">
    age
    ${compare}
    #{age}
   </if>
   <if test="name != null and name != ''">
    AND name LIKE CONCAT(CONCAT('%',#{name},'%'))
   </if>
   <if test="address != null and address != ''">
    AND address LIKE CONCAT(CONCAT('%',#{address},'%'))
   </if>
  </where>
  ORDER BY id
 </select>

查詢結果:

如何在MyBatis中實現模糊查詢

4.使用標簽

<select id="searchStudents" resultType="com.example.entity.StudentEntity"
  parameterType="com.example.entity.StudentEntity">
  <bind name="pattern1" value="'%' + _parameter.name + '%'" />
  <bind name="pattern2" value="'%' + _parameter.address + '%'" />
  SELECT * FROM test_student
  <where>
   <if test="age != null and age != '' and compare != null and compare != ''">
    age
    ${compare}
    #{age}
   </if>
   <if test="name != null and name != ''">
    AND name LIKE #{pattern1}
   </if>
   <if test="address != null and address != ''">
    AND address LIKE #{pattern2}
   </if>
  </where>
  ORDER BY id
 </select>

查詢結果:

如何在MyBatis中實現模糊查詢

5.在Java代碼中拼接字符串

public static void main(String[] args) {
  try {
   int count = 500;

   long begin = System.currentTimeMillis();
   testString(count);
   long end = System.currentTimeMillis();
   long time = end - begin;
   System.out.println("String 方法拼接"+count+"次消耗時間:" + time + "毫秒");

   begin = System.currentTimeMillis();
   testStringBuilder(count);
   end = System.currentTimeMillis();
   time = end - begin;
   System.out.println("StringBuilder 方法拼接"+count+"次消耗時間:" + time + "毫秒");

  } catch (Exception e) {
   e.printStackTrace();
  }

 }

 private static String testString(int count) {
  String result = "";

  for (int i = 0; i < count; i++) {
   result += "hello ";
  }

  return result;
 }

 private static String testStringBuilder(int count) {
  StringBuilder sb = new StringBuilder();

  for (int i = 0; i < count; i++) {
   sb.append("hello");
  }

  return sb.toString();
 }

以上就是如何在MyBatis中實現模糊查詢,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

旬邑县| 鹰潭市| 吉木乃县| 宣武区| 新营市| 东乡族自治县| 墨江| 吉安县| 大荔县| 宿迁市| 建宁县| 甘泉县| 明水县| 高唐县| 石首市| 桂东县| 宣恩县| 内乡县| 开化县| 德惠市| 玉龙| 垫江县| 原阳县| 土默特右旗| 剑河县| 宜黄县| 秀山| 罗平县| 杭锦后旗| 杂多县| 嵊泗县| 民和| 门头沟区| 红河县| 潞城市| 临桂县| 饶阳县| 新野县| 梅州市| 通道| 游戏|