真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯網站制作重慶分公司

如何在MyBatis中實現模糊查詢

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

我們提供的服務有:網站制作、成都網站制作、微信公眾號開發(fā)、網站優(yōu)化、網站認證、舞鋼ssl等。為超過千家企事業(yè)單位解決了網站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的舞鋼網站制作公司

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

如何在MyBatis中實現模糊查詢 

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

 
  SELECT * FROM test_student
  
   
    age
    ${compare}
    #{age}
   
   
    AND name LIKE '%#{name}%'
   
   
    AND address LIKE '%#{address}%'
   
  
  ORDER BY id
 

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

如何在MyBatis中實現模糊查詢

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

解決方法

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


  SELECT * FROM test_student
  
   
    age
    ${compare}
    #{age}
   
   
    AND name LIKE '%${name}%'
   
   
    AND address LIKE '%${address}%'
   
  
  ORDER BY id
 

查詢結果如下圖:

如何在MyBatis中實現模糊查詢

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

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

 
  SELECT * FROM test_student
  
   
    age
    ${compare}
    #{age}
   
   
    AND name LIKE "%"#{name}"%"
   
   
    AND address LIKE "%"#{address}"%"
   
  
  ORDER BY id
 

查詢結果:

如何在MyBatis中實現模糊查詢

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


  SELECT * FROM test_student
  
   
    age
    ${compare}
    #{age}
   
   
    AND name LIKE CONCAT(CONCAT('%',#{name},'%'))
   
   
    AND address LIKE CONCAT(CONCAT('%',#{address},'%'))
   
  
  ORDER BY id
 

查詢結果:

如何在MyBatis中實現模糊查詢

4.使用標簽


  
  
  SELECT * FROM test_student
  
   
    age
    ${compare}
    #{age}
   
   
    AND name LIKE #{pattern1}
   
   
    AND address LIKE #{pattern2}
   
  
  ORDER BY id
 

查詢結果:

如何在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中實現模糊查詢,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注創(chuàng)新互聯行業(yè)資訊頻道。


新聞標題:如何在MyBatis中實現模糊查詢
URL地址:http://weahome.cn/article/jpphhh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部