springBoot项目使用pagehelper分页插件

首先需要通过maven导入pagehelper分页插件,在pom.xml文件中加入pagehelper依赖;

使用spring时加入以下依赖:

        
        
            com.github.pagehelper
            pagehelper
            4.1.6
        

使用springboot是要加入以下依赖:

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

使用分页插件获取数据:


 @RequestMapping("getPageByCondition")
 @ResponseBody
 public Object getPageByCondition(Invesitagion condition) {
    
     PageHelper.startPage(condition.getPage(), condition.getLimit(), true); //执行分页查询
     PageInfo  pageInfo = new PageInfo((Page) infoService.getPageByCondition(condition));//执行查询语句
     return new ResultLayuiPage(pageInfo);//返回json数据
  }

 

你可能感兴趣的:(springboot,spring,boot,pagehelper分页插件)