PageHelper:第三方分页助手。将复杂的分页操作进行封装,从而让分页功能更简单。
    MyBatis核心配置文件配置:

    1. <plugins>
    2. <plugin interceptor="com.github.pagehelper.PageInterceptor"></plugin>
    3. </plugins>

    分页插件相关参数:

    返回值 方法名 说明
    long getTotal() 获取总条数
    int getPages() 获取总页数
    int getPageNum() 获取当前页
    int getPageSize() 获取每页显示条数
    int getPrePage() 获取上一页
    int getNextPage() 获取下一页
    boolean isIsFirstPage() 获取是否是第一页
    boolean isIsLastPage() 获取是否是最后一页