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

溫馨提示×

溫馨提示×

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

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

模糊查詢怎么使用mybatis來實現

發布時間:2020-11-21 15:54:00 來源:億速云 閱讀:165 作者:Leah 欄目:編程語言

模糊查詢怎么使用mybatis來實現?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

mybatis中分頁有3種方式來實現,通過sql語句(兩種傳參方式)來實現,通過mybatis 的 Rowbounds 來實現。

通過(自定義類型)傳參 來實現分頁:

映射文件:

<select id="findListBypage" parameterType="cn.wh.util.PageUtil" resultType="Role">
    select * from t_role limit #{index},#{size}
  </select>

測試代碼:

/**
   * 通過自定義類型來傳參 實現分頁功能 需要新建一個類型
   */
  @Test
  public void testPage1(){
    PageUtil pu = new PageUtil();
    pu.setIndex(3);
    pu.setSize(3);
    List<Role> list = session.selectList("cn.wh.mapper.RoleMapper.findListBypage", pu);
    for(Role r:list){
      System.out.println(r.getName());
    }
  }

通過map傳參實現:
映射文件:

<select id="findListBypage" parameterType="map " resultType="Role">
    select * from t_role limit #{index},#{size}
  </select>

測試代碼:

/**
   * 可以通過map來傳參 這樣可以不用新建新的類型
   */
  @Test
  public void testPage2(){
    Map<String,Integer> map = new HashMap<String,Integer>();
    map.put("index", 0);
    map.put("size", 3);
    List<Role> list = session.selectList("cn.wh.mapper.RoleMapper.findListBypage", map);
    for(Role r:list){
      System.out.println(r.getName());
    }
  }

通過RowBounds來實現分頁:
映射文件:

<select id="findAll" resultType="Role">
    select * from t_role
  </select>

測試代碼:

/**
   * 使用rowBounds來實現分頁
   */
  @Test
  public void testPage3(){
    //第一個參數 是index,開始下標
    //第二個參數 是size,每頁顯示記錄數
    RowBounds bounds = new RowBounds(3, 3);
    List<Role> list = session.selectList("cn.wh.mapper.RoleMapper.findAll", null,bounds);
    for(Role r:list){
      System.out.println(r.getName());
    }
  }

注意:通常情況下使用 Map 傳參來實現分頁

模糊查詢
映射文件:

<select id="selectLike" parameterType="string" resultType="Role">
    select *from t_role where name like #{name}
  </select>

測試代碼:

/**
   * 模糊查詢
   */
  @Test
  public void testLike1(){
    List<Role> list = session.selectList("cn.wh.mapper.RoleMapper.selectLike","%會員");
    for(Role r:list){
      System.out.println(r.getName());
    }
  }

第二種方式:

<select id="selectLike1" parameterType="string" resultType="Role">
    select *from t_role where name like concat(#{name},'%');
  </select>

測試代碼:

/**
   * 模糊查詢
   */
  @Test
  public void testLike2(){
    List<Role> list = session.selectList("cn.wh.mapper.RoleMapper.selectLike1","黃");
    for(Role r:list){
      System.out.println(r.getName());
    }
  }

注意:通常使用第二種方式實現模糊查詢

關于模糊查詢怎么使用mybatis來實現問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

海晏县| 察哈| 宝应县| 清涧县| 平乐县| 屏东市| 玉屏| 潞西市| 枝江市| 仙桃市| 高尔夫| 天水市| 内丘县| 巴东县| 平罗县| 万全县| 广饶县| 泸州市| 八宿县| 潼关县| 嵩明县| 嘉峪关市| 太谷县| 平谷区| 调兵山市| 延吉市| 无为县| 桦甸市| 石景山区| 涿鹿县| 涪陵区| 洪湖市| 常熟市| 兴和县| 纳雍县| 鱼台县| 龙海市| 达孜县| 洞头县| 防城港市| 永吉县|