Springboot结合PageHelper实现分页

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<HistoryLog> 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<HistoryLog> 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<HistoryLog> 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<HistoryLog> list = historyLogServiceimpl.QueryHistory2();
        PageInfo<HistoryLog> pageInfo = new PageInfo<HistoryLog>(list);//将查询数据存到PageInfo中
        ModelAndView mv = new ModelAndView();
        mv.addObject("historyLog",pageInfo);
        mv.setViewName("../WEB-INF/manager/cms/userLog/index1.html");
        return mv;
    }
}

前端代码:结合themeleaf模板,采用bootstrap组件

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>用户浏览日志</title>
    <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
    <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="table-responsive">
    <table class="table">
<!--        <caption>用户浏览日志</caption>-->
        <thead>
        <tr>
            <th>用户ID</th>
            <th>IP访问地址</th>
            <th>访问的文章ID</th>
            <th>创建时间</th>
        </tr>
        </thead>
        <tbody>
            <tr th:each="history,historyinfo:${historyLog.list}">
                <td th:text="${history.people_id}">people_id</td>
                <td th:text="${history.hl_ip}">hl_ip</td>
                <td th:text="${history.content_id}">content_id</td>
                <td th:text="${history.create_date}">create_date</td>
            </tr>
        </tbody>
    </table>
</div>
<nav aria-label="Page navigation" style="text-align: center">
    <ul class="pagination">
        <li>
            <a th:href="@{'http://localhost:8080/ms/userlog/pagehelper?pagenum=1'}" aria-label="Previous">
                <span aria-hidden="true">&laquo;</span>
            </a>
        </li>
        <li>
            <a th:href="@{'http://localhost:8080/ms/userlog/pagehelper?pagenum='+${historyLog.prePage}}" aria-label="Previous">
                <span aria-hidden="true">&lt;</span>
            </a>
        </li>
    </ul>

    <ul class="pagination" th:each="page,pages:${historyLog.navigatepageNums}">
            <li style="list-style: none;width: 34px;border: #337AB7"><a th:href="@{'http://localhost:8080/ms/userlog/pagehelper?pagenum='+${page}}" th:text="${page}"></a></li>
    </ul>
    <ul class="pagination">
        <li>
            <a th:href="@{'http://localhost:8080/ms/userlog/pagehelper?pagenum='+${historyLog.nextPage}}" aria-label="Previous">
                <span aria-hidden="true">&gt;</span>
            </a>
        </li>
        <li>
            <a th:href="@{'http://localhost:8080/ms/userlog/pagehelper?pagenum='+${historyLog.pages}}" aria-label="Previous">
                <span aria-hidden="true">&raquo;</span>
            </a>
        </li>
    </ul>
</nav>

</body>
</html>

效果图:

1.png

分析:

通过返回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结合此插件实现快速开发。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,125评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,293评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,054评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,077评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,096评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,062评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,988评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,817评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,266评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,486评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,646评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,375评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,974评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,621评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,642评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,538评论 2 352

推荐阅读更多精彩内容