SpringBoot学习-(分页)SpringBoot分页插件PageHelper

原文链接: https://juejin.im/post/5be80c1c6fb9a049f153b825

1.添加分页依赖



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

复制代码

2.配置application.yml

# 分页配置,针对mysql
pagehelper:
  helper-dialect: mysql
  reasonable: true
  support-methods-arguments: true
  params: count=countSql
复制代码

3.使用插件

/**
     * 
     * @Title: getList
     * @Description: 从数据库中获取所有商品类型列表
     * @param pageNum 当前页
     * @param pageSize 当前页面展示数目
     * @return
     * @throws Exception
     */
    public List getList(int pageNum, int pageSize) throws Exception {
        //使用分页插件,核心代码就这一行
        PageHelper.startPage(pageNum, pageSize);
        // 获取
        List typeList = typeDao.getList();
        return typeList;
    }
复制代码

转载于:https://juejin.im/post/5be80c1c6fb9a049f153b825

你可能感兴趣的:(SpringBoot学习-(分页)SpringBoot分页插件PageHelper)