mybatis插件Pagehelper分页助手

 一、mybatis分页助手插件首先需要maven引入依赖或下载jar,依赖如下如需jar包自行下载

   
            com.github.pagehelper
            pagehelper
            5.0.0(依赖版本号,根据实际自行调整)
        

    

二、配置yml文件

1.helperDialect:分页插件会自动检测当前的数据库链接,自动选择合适的分页方式。

2.reasonable:分页合理化参数,默认值为false。当该参数设置为 true 时,pageNum<=0 时会查询第一页,
pageNum>pages(超过总数时),会查询最后一页。默认false 时,直接根据参数进行查询。

3.supportMethodsArguments:是否支持接口参数来传递分页参数,默认为false,如果参数中有pageNum,pageSize分页参数,则会自动分页。

4.param:为了支持startPage(Object params)方法,增加了该参数来配置参数映射,用于从对象中根据属性名取值, 可以配置 pageNum,pageSize,count,pageSizeZero,reasonable,不配置映射的用默认值, 默认值为pageNum=pageNum;pageSize=pageSize;count=countSql;reasonable=reasonable;pageSizeZero=pageSizeZero


mybatis插件Pagehelper分页助手_第1张图片

三、java具体实现代码

1.controller代码:

mybatis插件Pagehelper分页助手_第2张图片

 2.service接口

 3.service实现类

 mybatis插件Pagehelper分页助手_第3张图片

 四、总结:使用mybatis插件Pagehelper分页不需要在sql中进行操作,但是需要注意使用Pagehelper分页查询的数据,sql中不能写limit,否则会和插件添加的limit冲突报错。

 

 

你可能感兴趣的:(mybatis分页)