当前位置:   article > 正文

SpringBoot2.0集成分页插件pagehelper-spring-boot-starter

pagehelper-spring-boot-starter

这里先介绍如何使用springboot2.0集成pagehelper-spring-boot-starter,

1、添加pom依赖
 <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.2.10</version>
 </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
2、添加配置(根据自己情况选择)

yml格式:

pagehelper:
    helperDialect: mysql
    reasonable: true
    supportMethodsArguments: true
    params: count=countSql
  • 1
  • 2
  • 3
  • 4
  • 5

application.properties格式

logging.level.com.example.demo.dao=DEBUG
pagehelper.helperDialect=mysql
pagehelper.reasonable=true
pagehelper.supportMethodsArguments=true
pagehelper.params=count=countSql
pagehelper.page-size-zero=true
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
3. demo演示
	@Service
    public classDemoService {
        @Autowired
        privateDemoMapper demoMapper;
        //当前页 一页多少个  mysql通过limit分页的哈
        public PageInfo<Demo> findDemoList(int page, int size) {
            // 开启分页插件,放在查询语句上面 帮助生成分页语句
            PageHelper.startPage(page, size); //底层实现原理采用改写语句   将下面的方法中的sql语句获取到然后做个拼接 limit  AOPjishu 
            List<Demo> listDemo = demoMapper.findDemoList();
            // 封装分页之后的数据  返回给客户端展示  PageInfo做了一些封装 作为一个类
            PageInfo<Demo> pageInfoDemo = new PageInfo<Demo>(listDemo);
            //所有分页属性都可以冲pageInfoDemo拿到;
            return pageInfoDemo;
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

集成时出现报错问题
helperDialect: mysql 是否是你的数据库类型
springboot2.0 集成时要使用1.2.x以后版本,项目无法启动,我就是因为之前使用1.1.2,一直无法启动也不报错,真的快崩溃了,希望能帮到你

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/676998
推荐阅读
相关标签
  

闽ICP备14008679号