Springboot - Mybatis 集成PageHelper分页插件

一. 说明

分页是web开发中常遇到的功能模块,之前看了一些分页算法,感觉都比较繁琐,不想再重复造轮子,项目中用到了Mybatis所有找到了PageHelper这个分页插件,其内部原理是执行一个Mybatis拦截器,将原来的普通的Sql查询语句动态替换成分页查询语句(与数据库原理相同 select * from xx limit x,x)。

二. 实现步骤

1.maven pom.xml中添加依赖包,推荐使用这个版本最新版踩了一些坑。

       
            com.github.pagehelper
            pagehelper
            4.1.0
        

2.创建一个mybatis配置类

@Configuration
public class mybatis {
    @Bean
    public PageHelper pageHelper() {
        System.out.println("MyBatisConfiguration.pageHelper()");
        PageHelper pageHelper = new PageHelper();
        Properties p = new Properties();
        p.setProperty("offsetAsPageNum", "true");
        p.setProperty("rowBoundsWithCount", "true");
        p.setProperty("reasonable", "true");
        pageHelper.setProperties(p);
        return pageHelper;
    }
}
  1. 直接在控制器中调用分页语句。
@RestController
public class UserController{

@Autowired
UserMapper userMapper;

    /**
     *
     * PageHelper.startPage执行后的下一条SQL
     * 查询语句将被分页
     * @param num 需要显示的第几页
     * @param size 需要显示的数据条数
     * @return
     */

    @RequestMapping(value = "/test",method = RequestMethod.GET)
    public List test( @RequestParam ("需要显示第几页")int num,@RequestParam("需要显示的数据条数") int size){

        PageHelper.startPage(num,size);//分页语句  
        List Users= debtUserMapper.SelectUserAll();
        return Users;
    }
}

4.测试

使用Swagger进行接口测试:

Springboot - Mybatis 集成PageHelper分页插件_第1张图片
image.png
Springboot - Mybatis 集成PageHelper分页插件_第2张图片
image.png
Springboot - Mybatis 集成PageHelper分页插件_第3张图片
image.png

能看到分页SQL语句,恭喜你分页成功~

5.总结
PageHelper 的确很方便,不过 PageHelper.startPage()语句最好执行在你想要的最终结果的SQL查询语句前,否则可能出现分页不生效问题。

参考文章:http://blog.csdn.net/abcd898989/article/details/51244351
原文链接:http://blog.csdn.net/woniu211111/article/details/54562307

你可能感兴趣的:(Springboot - Mybatis 集成PageHelper分页插件)