目录
一、分页查询
二,特殊的字符处理
三、总结
前言:在我们上篇已经学的动态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[ <= ]]>
②: <(<) 、 >(>) 、 &(&)
举例说明:
①BookBiz
List<Book> list6(BookVo bookVo);
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} < price</if><if test="null != max and max != ''">and #{max} > 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);}
测试结果: