153. MyBatis- pagehelper换为pagehelper-spring-boot-starter

Posted SpringBoot

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了153. MyBatis- pagehelper换为pagehelper-spring-boot-starter相关的知识,希望对你有一定的参考价值。

对于Spring Boot中使用Pagehelper,现在开放了一个pagehelper-spring-boot-starter,能够更简单的进行集成,这个start1.1.3版本)使用的是5.0.4pagehelper。那么如何使用呢?

对于Spring Boot中使用Pagehelper,现在开放了一个pagehelper-spring-boot-starter,能够更简单的进行集成,这个start1.1.3版本)使用的是5.0.4pagehelper。那么如何使用呢?

<dependency>

  <groupId>com.github.pagehelper</groupId>

  <artifactId>pagehelper</artifactId>

   <version>4.1.0</version>

</dependency>

添加如下的依赖:

<dependency>

  <groupId>com.github.pagehelper</groupId>

   <artifactId>pagehelper-spring-boot-starter</artifactId>

   <version>1.1.3</version>

 </dependency>

 

第二步:删除配置类MyBatisConfiguration

       之前在这个类里面我们注入了PageHelper,这里可以直接把这个配置类删除掉了,用不上了(如果是直接使用的话,那么这个这个步骤直接跳过,往下操作即可)。

 

第三步:在application.properties添加配置信息

pagehelper.helperDialect=mysql

pagehelper.reasonable=true

pagehelper.supportMethodsArguments=true

pagehelper.params=count=countSql

       其实就是把我们的配置信息从Java类移到了配置文件。

 

第四步:测试

       访问一下之前编写的代码,看是否可以即可:

http://127.0.0.1:8080/selectAll?pageNum=2

 

视频+交流平台:

à Spring Boot网易云课堂视频

http://study.163.com/course/introduction.htm?courseId=1004329008


à Spring Boot交流平台

http://412887952-qq-com.iteye.com/blog/2321532

 

 


以上是关于153. MyBatis- pagehelper换为pagehelper-spring-boot-starter的主要内容,如果未能解决你的问题,请参考以下文章

mybatis pagehelper 怎么求出总页数

Mybatis(pagehelper)

Mybatis 的分页插件 PageHelper

mybatis分页插件pagehelper

MyBatis使用pagehelper进行分页

MyBatis使用pagehelper进行分页