PageHelper结合Spring boot快速实现分页查询
MyBatis 分页插件 PageHelper
如果你也在用 MyBatis,建议尝试该分页插件,这一定是最方便使用的分页插件。分页插件支持任何复杂的单表、多表分页。
但在其官方文档中,现阶段并没有看到此插件与spring boot的结合使用说明。如何使用分页插件 (pagehelper.github.io)
本篇博客实现Spring boot结合MyBatis 分页插件 PageHelper实现分页效果:
后端代码:
创建实体类:(HistoryLog,不多赘述)
service层:
import java.util.List;
public interface HistoryLogService {
/**
* 分页查询接口
* 这里统一封装了分页请求和结果,避免直接引入具体框架的分页对象, 如MyBatis或JPA的分页对象
* 从而避免因为替换ORM框架而导致服务层、控制层的分页接口也需要变动的情况,替换ORM框架也不会
* 影响服务层以上的分页接口,起到了解耦的作用
*/
Page QueryHistory2();
}
mapper持久层:
import com.github.pagehelper.Page;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Result;
import org.apache.ibatis.annotations.Results;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
import java.util.List;
@Mapper
@Repository
public interface HistoryLogMapper {
// 分页查询用户浏览日志
@Select("select content_id,people_id,hl_ip,date_format(create_date, '%Y-%c-%d %h:%i:%s' ) create_date from cms_history_log where people_id is not null ORDER BY create_date desc ")
@Results({
@Result(property = "content_id", column = "content_id"),
@Result(property = "people_id", column = "people_id"),
@Result(property = "hl_ip", column = "hl_ip"),
@Result(property = "create_date", column = "create_date")
})
Page queryHistoryLog2();
}
实现类:
import com.github.pagehelper.Page;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class HistoryLogServiceImpl implements HistoryLogService {
@Autowired
HistoryLogMapper historyLogMapper;
@Override
public Page QueryHistory2() {
return historyLogMapper.queryHistoryLog2();
}
}
控制层:
package net.mingsoft.front.controller;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;
import java.util.List;
@RestController
public class HistoryLogController {
@Autowired
HistoryLogServiceImpl historyLogServiceimpl;
// 分页查询
@RequestMapping("ms/userlog/pagehelper")
public Object getUserList2(int pagenum) {
PageHelper.startPage(pagenum, 15);//设置跳转到第几页以及每页显示15条数据
List list = historyLogServiceimpl.QueryHistory2();
PageInfo pageInfo = new PageInfo(list);//将查询数据存到PageInfo中
ModelAndView mv = new ModelAndView();
mv.addObject("historyLog",pageInfo);
mv.setViewName("../WEB-INF/manager/cms/userLog/index1.html");
return mv;
}
}
前端代码:结合themeleaf模板,采用bootstrap组件
用户浏览日志
用户ID
IP访问地址
访问的文章ID
创建时间
people_id
hl_ip
content_id
create_date
效果图:
分析:
通过返回pageinfo的数据进行分析:
{
"total": 15, //总共显示数据条数
"list": [ //显示的数据
{
"id": 0,
"content_id": 1329315928002863000,
"people_id": 123123,
"hl_ip": "127.0.0.1",
"hl_is_mobile": null,
"update_date": null,
"update_by": null,
"create_date": "2022-3-29 08:30:30",
"create_by": null,
"del": 0
},
{
"id": 0,
"content_id": 1329315860382294000,
"people_id": 123123,
"hl_ip": "127.0.0.1",
"hl_is_mobile": null,
"update_date": null,
"update_by": null,
"create_date": "2022-3-29 08:30:28",
"create_by": null,
"del": 0
},
{
"id": 0,
"content_id": 1345972716284457000,
"people_id": 123123,
"hl_ip": "127.0.0.1",
"hl_is_mobile": null,
"update_date": null,
"update_by": null,
"create_date": "2022-3-29 08:30:26",
"create_by": null,
"del": 0
}
],
"pageNum": 1, //当前页码
"pageSize": 3, //每页的数量
"size": 3, //当前页的数量
"startRow": 1, //当前页面第一个元素在数据库中的行号
"endRow": 3, //当前页面最后一个元素在数据库中的行号
"pages": 5, //总页数
"prePage": 0, //前一页页码
"nextPage": 2, //下一页页码
"isFirstPage": true, //是否为第一页
"isLastPage": false, //是否为最后一页
"hasPreviousPage": false, //是否有前一页
"hasNextPage": true, //是否有下一页
"navigatePages": 8, //导航页码数
"navigatepageNums": [ //所有导航页号
1,
2,
3,
4,
5
],
"navigateFirstPage": 1, //导航栏第一页 (导航栏最多8页,可根据当前页码动态显示)
"navigateLastPage": 5, //导航栏最后一页
"lastPage": 5, //最后一页
"firstPage": 1 //第一页
}
注:此处pageinfo改为从第一条开始,每页显示三条。
在分页时,此插件会在持久层的sql 后面+limit ,通过拼接sql的方式使得在每次翻页的时候会进行查询把数据存放到pageinfo中。
总结:此插件中pageinfo的多种参数满足了绝大多数的开发场景,使用spring boot结合此插件实现快速开发。