springboot 整合pagehelpeer

添加依赖


            com.github.pagehelper
            pagehelper-spring-boot-starter
            1.2.2
        

使用

PageHelper.startPage(需要显示的第几个页面,每个页面显示的数量);

下一行紧跟查询语句,不可以写其他的,否则没有效果。
PageHelper.startPage(apps.getPageNum(), apps.getPageSize());
ArrayList appsList = appsService.getApps(apps);

 

你可能感兴趣的:(秒扒Spring)