springboot mybatis pagehelper 分页问题

Posted YSHY

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot mybatis pagehelper 分页问题相关的知识,希望对你有一定的参考价值。

1:添加依赖

compile group: ‘com.github.pagehelper‘, name: ‘pagehelper-spring-boot-starter‘, version: ‘1.2.9‘
注意:在spring-boot中一定要使用 pagehelper-spring-boot-starter而不是pagehelper,否则分页不起作用。

2:应用案例

@RequestMapping(
            value = "/page",
            method = RequestMethod.GET
    )
    public ResultVo getUserPages(@RequestParam Integer pageNum, @RequestParam Integer pageSize){
        PageHelper.startPage(pageNum, pageSize);//一定要在userMapper.getUsers()之前执行
        List<UserVo> list = userMapper.getUsers();
        PageInfo<UserVo> pageInfo = new PageInfo<>(list,pageSize);

        return ResultUtil.dealPageResult(pageInfo, "用户分页信息");
    }

 


以上是关于springboot mybatis pagehelper 分页问题的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记——Mybatis分页插件

SSM-CRUD

SpringBoot使用·下篇(SpringBoot集成MyBatis+日志打印+MyBatis-plus)

SpringBoot使用·下篇(SpringBoot集成MyBatis+日志打印+MyBatis-plus)

SpringBoot 整合其他框架 -- SpringBoot整合Mybatis

springboot.springboot用最简单的方式整合mybatis