Mybatis (3)-----分页的运用

目录

一、分页查询

二,特殊的字符处理

三、总结


前言:在我们上篇已经学的动态sql的基础上,今天继续讲解关于maybatis的分页,特殊的字符处理。希望这篇博客可以帮助到大家哦!

一、分页查询

为什么要重写mybatis的分页?

重写MyBatis的分页功能有几个原因。

首先,MyBatis默认的分页功能只能实现简单的分页,无法满足复杂的分页需求。通过重写MyBatis的分页,可以实现更灵活、更高级的分页功能。 其次,重写分页可以提高系统的性能。

其次,MyBatis的默认分页实现是通过在数据库查询时先查询出所有的结果,然后再根据分页参数进行结果的筛选。当数据量较大时,这种方式会导致查询的性能下降,甚至出现内存溢出的问题。通过重写分页,可以在数据库查询时直接生成带有分页语句的SQL,避免不必要的数据加载和内存消耗,从而提高系统的性能。 此外,重写分页还可以兼容不同的数据库方言。不同的数据库在分页语法上有一些差异,MyBatis默认的分页实现只适用于某些数据库,无法兼容所有的数据库。通过重写分页,可以根据不同的数据库方言生成相应的分页语句,从而实现跨数据库的分页功能。 因此,重写MyBatis的分页功能可以满足更复杂的分页需求,提高系统的性能,并兼容不同的数据库方言。

自定义使用分页插件步奏:
1、导入pom依赖

<dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper</artifactId><version>5.1.2</version>
</dependency>

要找对文件夹目录,不然问题大大。
2、Mybatis.cfg.xml配置拦截器

<plugins><!-- 配置分页插件PageHelper, 4.0.0以后的版本支持自动识别使用的数据库 --><plugin interceptor="com.github.pagehelper.PageInterceptor"></plugin>
</plugins>

3、使用PageHelper进行分页

package com.lya.util;import javax.servlet.http.HttpServletRequest;
import java.io.Serializable;
import java.util.Map;
/*** @authorlya* @site www.lya.com* @create  2023-08-24 11:44*/
public class PageBean implements Serializable {private static final long serialVersionUID = 2422581023658455731L;//页码private int page=1;//每页显示记录数private int rows=10;//总记录数private int total=0;//是否分页private boolean isPagination=true;//上一次的请求路径private String url;//获取所有的请求参数private Map<String,String[]> map;public PageBean() {super();}//设置请求参数public void setRequest(HttpServletRequest req) {String page=req.getParameter("page");String rows=req.getParameter("rows");String pagination=req.getParameter("pagination");this.setPage(page);this.setRows(rows);this.setPagination(pagination);this.url=req.getContextPath()+req.getServletPath();this.map=req.getParameterMap();}public String getUrl() {return url;}public void setUrl(String url) {this.url = url;}public Map<String, String[]> getMap() {return map;}public void setMap(Map<String, String[]> map) {this.map = map;}public int getPage() {return page;}public void setPage(int page) {this.page = page;}public void setPage(String page) {if(null!=page&&!"".equals(page.trim()))this.page = Integer.parseInt(page);}public int getRows() {return rows;}public void setRows(int rows) {this.rows = rows;}public void setRows(String rows) {if(null!=rows&&!"".equals(rows.trim()))this.rows = Integer.parseInt(rows);}public int getTotal() {return total;}public void setTotal(int total) {this.total = total;}public void setTotal(String total) {this.total = Integer.parseInt(total);}public boolean isPagination() {return isPagination;}public void setPagination(boolean isPagination) {this.isPagination = isPagination;}public void setPagination(String isPagination) {if(null!=isPagination&&!"".equals(isPagination.trim()))this.isPagination = Boolean.parseBoolean(isPagination);}/*** 获取分页起始标记位置* @return*/public int getStartIndex() {//(当前页码-1)*显示记录数return (this.getPage()-1)*this.rows;}/*** 末页* @return*/public int getMaxPage() {int totalpage=this.total/this.rows;if(this.total%this.rows!=0)totalpage++;return totalpage;}/*** 下一页* @return*/public int getNextPage() {int nextPage=this.page+1;if(this.page>=this.getMaxPage())nextPage=this.getMaxPage();return nextPage;}/*** 上一页* @return*/public int getPreivousPage() {int previousPage=this.page-1;if(previousPage<1)previousPage=1;return previousPage;}@Overridepublic String toString() {return "PageBean [page=" + page + ", rows=" + rows + ", total=" + total + ", isPagination=" + isPagination+ "]";}
}

4、处理分页结果

①BookBiz

List<Map> listPager(Map map, PageBean pageBean);


②BookMapper.java

//    利用第三方插件进行分页List<Map> listPager(Map map);


③BookMapper.xml

<select id="listPager" resultType="java.util.Map" parameterType="java.util.Map">select * from t_mvc_book where bname like concat(concat('%',#{bname}),'%')
</select>


④BookBizImpl

@Overridepublic List<Map> listPager(Map map, PageBean pageBean) {
//        pageHelper分页插件相关的代码if(pageBean!=null&&pageBean.isPagination()){PageHelper.startPage(pageBean.getPage(),pageBean.getRows());}List<Map> maps = bookMapper.listPager(map);if(pageBean!=null&&pageBean.isPagination()){
//            处理查询结果的前提是需要分页,是需要分页的PageInfo info = new PageInfo(maps);pageBean.setTotal(info.getTotal()+"");}return maps;}


⑤BookBizImplTest 

@Testpublic void listPager() {Map map=new HashMap();map.put("bname","圣墟");
//        bookBiz.listPager(map).forEach(System.out::println);//        查询出第二页的20条数据PageBean pageBean = new PageBean();pageBean.setPage(2);pageBean.setRows(20);bookBiz.listPager(map,pageBean).forEach(System.out::println);}

二,特殊的字符处理

二、模糊查询
 我们在写模糊查询的时候一般是这样写的:

select * from t_mvc_book where bname like '%?%'

然后我们便使用占位符在后台进行传值进行查询

那么使用Mybatis只后会有所不同,他有三种方式改变这个模糊查询的方式:

  <select id="selectBooksLike1" resultType="com.zq.model.Book" parameterType="java.lang.String">select * from t_mvc_book where bname like #{bname}
</select><select id="selectBooksLike2" resultType="com.zq.model.Book" parameterType="java.lang.String">select * from t_mvc_book where bname like '${bname}'
</select><select id="selectBooksLike3" resultType="com.zq.model.Book" parameterType="java.lang.String">select * from t_mvc_book where bname like concat('%',#{bname},'%')
</select>


 写完这些xml文件的配置后我们将其他的biz层也加入进来

BookMapper.xml:
 


<select id="listPagerS" resultType="com.csdn.xw.model.Book" parameterType="java.util.Map">select * from t_mvc_book where bname like concat(concat('%',#{bname}),'%') and price < #{max}
</select>

BookBizImplTest 

 @Testpublic void listPagerS() {System.out.println("没有处理特殊字符之前");Map map=new HashMap();map.put("dname","圣墟");map.put("max",20);bookBiz.listPagerS(map).forEach(System.out::println);

 @Testpublic void listPagerS() {System.out.println("没有处理特殊字符之前");Map map=new HashMap();map.put("dname","圣墟");map.put("max",20);bookBiz.listPagerS(map).forEach(System.out::println);


 

三、总结

   我们在使用myBatis的时候,在做sql的配置文件的时候会发现一个问题,就是会出现特殊字符和标签括号冲突问题

比如:<  和<

什么意思?就是第一个是判断符号小于,第二个是标签的左括号,那么怎么区别呢?有两种方式:

①: <![CDATA[ <= ]]> 

②:    <(&lt;)  、    >(&gt;)       &(&amp;) 

举例说明:

  ①BookBiz

 
  1. List<Book> list6(BookVo bookVo);

  2. List<Book> list7(BookVo bookVo);

②BookMapper.java

/*** 处理特殊字符* @param bookVo* @return*/List<Book> list6(BookVo bookVo);/*** 处理特殊字符* @param bookVo* @return*/List<Book> list7(BookVo bookVo);


③BookMapper.xml

<select id="list6" resultType="com.zq.model.Book" parameterType="com.zq.model.BookVo">select * from t_mvc_book<where><if test="null != min and min != ''"><![CDATA[  and #{min} < price ]]></if><if test="null != max and max != ''"><![CDATA[ and #{max} ></where>
</select><select id="list7" resultType="com.javaxl.model.Book" parameterType="com.zq.model.BookVo"> price ]]></if>select * from t_mvc_book<where><if test="null != min and min != ''">and #{min} &lt; price</if><if test="null != max and max != ''">and #{max} &gt; price</if></where></select>

④BookBizImpl

@Overridepublic List<Book> list6(BookVo bookVo) {return bookMapper.list6(bookVo);}@Overridepublic List<Book> list7(BookVo bookVo) {return bookMapper.list7(bookVo);}

⑤BookBizImplTest

 @Testpublic void list6() {BookVo vo=new BookVo();vo.setMax(45);vo.setMin(35);bookBiz.list6(vo).forEach(System.out::println);}@Testpublic void list7() {BookVo vo=new BookVo();vo.setMax(45);vo.setMin(35);bookBiz.list7(vo).forEach(System.out::println);}

测试结果:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/82272.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

邀请函 | 区块链如何助力建设“健康中国”?ESG系列研讨会“医疗”专场来袭!

党的十九大报告指出&#xff0c;要全面实施健康中国战略&#xff0c;为人民群众提供全方位全周期健康服务。今年7月&#xff0c;国家卫生健康委等六部门联合印发了《深化医药卫生体制改革2023年下半年重点工作任务》&#xff0c;明确指出要开展全国医疗卫生机构信息互通共享三年…

合宙Air724UG LuatOS-Air LVGL API--对象

对象 概念 在 LVGL 中&#xff0c;用户界面的基本构建块是对象。例如&#xff0c;按钮&#xff0c;标签&#xff0c;图像&#xff0c;列表&#xff0c;图表或文本区域。 属性 基本属性 所有对象类型都共享一些基本属性&#xff1a; Position (位置) Size (尺寸) Parent (父母…

Ubuntu18.04 交叉编译curl-7.61.0

下载 官方网址是&#xff1a;curl 安装依赖库 如果需要curl支持https协议&#xff0c;需要先交叉编译 openssl,编译流程如下&#xff1a; Ubuntu18.04 交叉编译openssl-1.1.1_我是谁&#xff1f;&#xff1f;的博客-CSDN博客 解压 # 解压&#xff1a; $tar -xzvf curl-7.61.…

QT TLS initialization failed问题(已解决) QT基础入门【网络编程】openssl

问题: qt.network.ssl: QSslSocket::connectToHostEncrypted: TLS initialization failed 这个问题的出现主要是使用了https请求:HTTPS ≈ HTTP + SSL,即有了加密层的HTTP 所以Qt 组件库需要OpenSSL dll 文件支持HTTPS 解决: 1.加入以下两行代码获取QT是否支持opensll以…

基于matlab的lorenz混沌系统仿真与分析

目录 1.算法运行效果图预览 2.算法运行软件版本 3.部分核心程序 4.算法理论概述 5.算法完整程序工程 1.算法运行效果图预览 2.算法运行软件版本 matlab2022a 3.部分核心程序 ..................................................................................... l…

AMBA总线协议(0)——目录与传送门

一、AMBA总线协议 Arm高级微控制器总线架构&#xff08;Advanced Microcontroller Bus Architecture&#xff0c;AMBA&#xff09;是一种开放式标准片上互联规范&#xff0c;用于连接和管理片上系统&#xff08;System on Chip,Soc&#xff09;中的功能块。 AMBA是一种广泛用于…

Mac操作系统Safari 17全新升级:秋季推出全部特性

苹果的内置浏览器可能是Mac上最常用的应用程序&#xff08;是的&#xff0c;甚至比Finder、超级Mac Geeks还要多&#xff09;。因此&#xff0c;苹果总是为其浏览器Safari添加有用的新功能。在今年秋天与macOS Sonoma一起推出的第17版中&#xff0c;Safari可以帮助你提高工作效…

如何从零开始搭建公司自动化测试框架?

搭建的自动化测试框架要包括API测试&#xff0c;UI测试&#xff0c;APP测试三类。以上三类其实可以简化为两类&#xff0c;那就是&#xff1a; 1&#xff09;接口自动化测试框架搭建 2&#xff09;UI自动化测试框架搭建。 没问题&#xff0c;安排&#xff0c;且是手把手教你如何…

车联网技术介绍

上图是目前车联网架构图&#xff0c;基于“云-管-端”的车联网系统架构以支持车联网应用的实现&#xff0c; “云”是指 V2X 基础平台、高基于精度定位平台等基础能力&#xff0c;可实现车辆动态厘米级定位&#xff0c;这将满足现阶段以及未来车联网应用场景的定位精度需求。 “…

【论文阅读】HOLMES:通过关联可疑信息流进行实时 APT 检测(SP-2019)

HOLMES: Real-time APT Detection through Correlation of Suspicious Information Flows S&P-2019 伊利诺伊大学芝加哥分校、密歇根大学迪尔伯恩分校、石溪大学 Milajerdi S M, Gjomemo R, Eshete B, et al. Holmes: real-time apt detection through correlation of susp…

webpack5 (二)

什么是bable 是 js 编译器&#xff0c;主要的作用是将 ES6 语法编写的代码转换为向后兼容的 js 语法&#xff0c;以便可以运行在当前版本和旧版本的浏览器或其他环境中。 它的配置文件有多种写法&#xff1a; babel.config.*(js/json) babelrc.*(js/json) package.json 中的…

美团增量数仓建设新进展

摘要&#xff1a;本文整理自美团系统研发工程师汤楚熙&#xff0c;在 Flink Forward Asia 2022 实时湖仓专场的分享。本篇内容主要分为四个部分&#xff1a; 建设背景核心能力设计与优化业务实践未来展望 点击查看原文视频 & 演讲PPT 一、美团增量数仓的建设背景 美团数仓架…