SpringBoot中如何集成Mybaits PageHelper分页插件

在项目的pom.xml文件中引入:

   com.github.pagehelper
   pagehelper-spring-boot-starter
   1.1.1
需要注意的是:要想在SpringBoot中无配置的引入分页插件artifactsId必须是:
pagehelper-spring-boot-starter
不能是下面的:

    com.github.pagehelper
    pagehelper
    3.2.3

在查询的时候
PageHelper.startPage(curPage, pageSize);
就可以了


你可能感兴趣的:(java基础,mybatis)