码迷,mamicode.com
首页 > 编程语言 > 详细

springboot mybatis pagehelper 分页问题

时间:2018-10-28 11:24:32      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:mapping   spring   span   而不是   tis   pil   map   问题   turn   

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 分页问题

标签:mapping   spring   span   而不是   tis   pil   map   问题   turn   

原文地址:https://www.cnblogs.com/yshyee/p/9864539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!