pagehelper分页插件的⽤法
pagehelper分页插件的⽤法
插件简介
PageHelper是⼀款好⽤的开源免费的Mybatis第三⽅物理分页插件,原本以为分页插件,应该是很简单的,然⽽PageHelper⽐我想象的要复杂许多,它做的很强⼤,也很彻底,强⼤到使⽤者可能并不需要这么多功能,但是⾥⾯给我们封装了很多很多的变量,便于我们的开发,从⽽更加简单的加快了我们使⽤的效率
分页插件的使⽤
1.在l中导⼊相对于的坐标
pagehelper会依赖jsqlparser,在maven⼯程中也就是导⼊其坐标
分页查询插件<!--后端分页插件的使⽤的相关的jar包-->
<dependency>
<groupId>com.github.jsqlparser</groupId>
<artifactId>jsqlparser</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.2</version>
</dependency>
2.在mybatis的配置⽂件中配置⽅⾔
显然是指定要使⽤数据库的类型,便于数据的读取功能
<!--后端分页的插件,使⽤其插件的⽤法,能够⼤⼤的减少其关于分页的写法-->
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<!--配置连接的相关的数据库的⽅⾔-->
<property name="helperDialect" value="mysql"/>
</plugin>
</plugins>
3.在dao层配置查询所有的接⼝(这⾥以多表查询的注解开发为例)
在dao层配置其分页查询的条件,这⾥的配置是多表查询的注解开发,故细节不再讲解,会在另⼀篇博客中详细给⼤家讲解到的
//分页查询的接⼝
@Select("select * from classes")
@Results(id ="classesMap",value ={
@Result(id =true,column ="id",property ="id"),
@Result(column ="name",property ="name"),
@Result(column ="type",property ="type"),
@Result(column ="status",property ="status"),
@Result(column ="majid",property ="majid"),
@Result(column ="pre1",property ="pre1"),
@Result(column ="pre2",property ="pre2"),
@Result(column ="majid",property ="major",
one =@One(select ="cn.ujiuye.dao.MajorDao.findById",fetchType = FetchType.EAGER)),
})
List<Classes>getByPage();
4.在serice层配置其相对的参数的配置
配置分页的参数
调⽤查询所有的数据的接⼝
通过PageInfo对第⼆步中的sql语句的分页的关键字的以及参数(返回页码,每页的参数,总条数,当前的总页数,当前的页的集合)
/**
* 利⽤后端分页实现的数据的分页展⽰的信息
* @param pageNO
* @return
*/
public PageInfo<Classes>getClist(int pageNO);
/**
* 通过后端的分页插件查询全部的数据的信息
* 1.设置分页参数
* 2.调⽤查询所有的数据的接⼝
* 3.通过PageInfo对第⼆步的sql语句拼接的关键字和分页的参数,返回PageInfo
* (页码,每页的条数,总页数,当前的页⾯的集合等)
* @param pageNO
* @return
*/
@Override
public PageInfo<Classes>getClist(int pageNO){
/
/设置分页的参数
PageHelper.startPage(pageNO,4);
//调⽤查询所有的数据的接⼝
List<Classes> clist = ByPage();
//通过PageInfo对第⼆步中的Sql语句拼接的分页的关键字以及分页参数,
//返回PageInfo(页码,每页条数,总条数,当前页的集合等)
PageInfo<Classes> info =new PageInfo<Classes>(clist);
return info;
}
5.在controller层配置其前后端的页⾯的交互
/**
* 利⽤后端框架来实现对从后台数据的读取⼯作
* 初始化默认是第⼀页
* 该类对象中有所需的各种业务
* @return
*/
@RequestMapping
public String getList(Model model,@RequestParam(defaultValue ="1")int pageNO){ //从后台获取参数,并将其结果存⼊到域对象中,转发到相对应的页⾯上
PageInfo<Classes> info = Clist(pageNO);
model.addAttribute("info",info);
return"class/cla-list";
}
6.在jsp页⾯其进⾏展⽰
<c:forEach items="${info.list}" var="c">
<tr class="text-c va-m">
<td><input type="checkbox" name="id" value="${c.id}"></td>
<td class="text-l">${c.id}</td>
<td class="text-l">${c.name}</td>
<td class="text-l">${c.type}</td>
<td class="text-l">${c.major.name}</td>
<td>
<a href=""class="btn btn-danger radius">删除</a>
<a class="btn btn-primary radius"
onClick="maj_edit('学⽣编辑','cla/showadd','${c.id}')"
href="javascript:;" title="编辑"><i class="Hui-iconfont">编辑</i></a>
<a href=""class="btn btn-danger radius">排课</a>
</td>
</tr>
</c:forEach>
运⾏结果
源码分享
通过对源码的分析更能让我们明确⾃⼰进步的过程和⽬标,奠定更好的前进动⼒
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论