PageHelper-Spring-Boot-Starter 帮助你集成分页插件到 Spring Boot。
PageHelper-Spring-Boot-Starter will help you use PageHelper with Spring Boot.
Support PageHelper 6.x
在 pom.xml 中添加如下依赖:
Add the following dependency to your pom.xml:
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>2.1.0</version>
</dependency>
- 升级 PageHelper 到 6.1.0,支持异步 count 等功能,详细查看 6.1.0
- 升级 MyBatis 到 3.5.15
- 升级 springboot 到 2.7.18
- 新增参数
orderBySqlParser
,OrderBySqlParser
改为接口,允许通过orderBySqlParser
参数替换为自己的实现 - 新增参数
sqlServerSqlParser
,SqlServerSqlParser
改为接口,允许通过sqlServerSqlParser
参数替换为自己的实现 - 接口
CountSqlParser
,OrderBySqlParser
,SqlServerSqlParser
还支持SPI方式覆盖默认实现,优先级低于参数指定
- 升级 PageHelper 到 6.0.0,支持异步 count 等功能,详细查看 6.0
- 升级 MyBatis 到 3.5.15
- 升级 springboot 到 2.7.17
- 新增参数
asyncCount
,增加异步count支持,默认false
,单次设置:PageHelper.startPage(1, 10).enableAsyncCount()
; - 新增参数
countSqlParser
,CountSqlParser
改为接口,允许通过countSqlParser
参数替换为自己的实现
参数示例:
pagehelper.async-count=true
- 升级 PageHelper 到 5.3.3
- 升级 MyBatis 到 3.5.13
- 升级 MyBatis Starter 到 2.3.1
- 升级 springboot 到 2.7.12
- 兼容 Spring Boot 3.0 by pky920216344
- 功能完善:存在PageInterceptor及其子类就不再添加过滤器 by jingheee
- 升级 PageHelper 到 5.3.2
- 修复配置文件中kebab-case风格的配置项失效的问题 pr#138, by ShoWen
- 兼容性支持,demo配置修改
- 升级 springboot 到 2.7.3
- 升级 PageHelper 到 5.3.1
- 升级 MyBatis 到 3.5.10
- 升级 springboot 到 2.7.0
- 升级 MyBatis 到 3.5.9
- 升级 MyBatis Starter 到 2.2.2
- 升级 springboot 到 2.6.6
- 升级 springboot 到 2.6.0,兼容性修复,解决循环依赖
- 升级 PageHelper 到 5.3.0
- 升级 springboot 到 2.5.5
- 增加
autoDialectClass
参数,详情看 PageHelper 更新日志
- 升级 PageHelper 到 5.2.1
- 升级 MyBatis 到 3.5.7
- 升级 MyBatis Starter 到 2.2.0
- 升级 springboot 到 2.5.1
PageHelperAutoConfiguration
使用InitializingBean
接口代替@PostConstruct
注解
- 升级 PageHelper 到 5.2.0,包含大量改动,详细内容参考:PageHelper 更新日志
- 升级 MyBatis 到 3.5.5
- 升级 MyBatis Starter 到 2.1.3
- 升级 springboot 到 2.3.1.RELEASE
PageHelperAutoConfiguration
增加@Lazy(false)
注解,当配置延迟加载时,避免分页插件出错- 添加分页插件时判断是否已经配置过同一个实例(不同的配置是不同的实例)
- 升级 PageHelper 到 5.1.11
- 升级 MyBatis 到 3.5.3
- 升级 MyBatis Starter 到 2.1.1
- 升级 springboot 到 2.2.1.RELEASE
- 升级 PageHelper 到 5.1.10
- 升级 PageHelper 到 5.1.9
- 升级 MyBatis 到 3.5.1
- 升级 MyBatis Starter 到 2.0.1
- 升级 springboot 到 2.1.5.RELEASE
- 升级 PageHelper 到 5.1.8
- 升级 springboot 到 2.1.0.RELEASE
- 升级 PageHelper 到 5.1.7
v1.2.8 由于未修改版本,仍然和 v1.2.7 相同。
- 升级 PageHelper 到 5.1.6
- 升级 PageHelper 到 5.1.5
- 升级 PageHelper 到 5.1.4(默认增加对达梦数据库的支持)
- 升级 MyBatis 到 3.4.6
- 升级 PageHelper 到 5.1.3
- 升级 springboot 到 2.0.1.RELEASE
- 增加 dialectAlias 参数,允许配置自定义实现的 别名,可以用于根据JDBCURL自动获取对应实现,允许通过此种方式覆盖已有的实现,配置示例如(多个配置用分号
;
隔开):pagehelper.dialect-alias=oracle=com.github.pagehelper.dialect.helper.OracleDialect
- 增加 defaultCount 参数,用于控制默认不带 count 查询的方法中,是否执行 count 查询,默认 true 会执行 count 查询,这是一个全局生效的参数,多数据源时也是统一的行为。配置示例如:
pagehelper.default-count=false
- 修改属性获取方式,兼容 Spring Boot 1.x 和 2.x
- 第三方扩展分页插件时使用到额外属性时,配置属性要和属性名完全匹配
- 升级 springboot 到 1.5.7.RELEASE
- 升级 MyBatis-Starter 版本到 1.3.1
- 升级 pagehelper 到 5.1.2
- 升级 pagehelper 到 5.1.1
- 升级 pagehelper 到 5.1.0
- 升级 pagehelper 到 5.0.4
- 升级 springboot 到 1.5.6.RELEASE
v1.1.2 - 2017-06-28 by drtrang
- 升级 pagehelper 到 5.0.3
- 升级 springboot 到 1.5.4.RELEASE
- 将 maven-compiler-plugin 和 maven-source-plugin 从 release profile 中提出来作为全局插件,并且增加继承属性,解决
PageHelperAutoConfiguration
类中的@Override
报错问题。
- 增加多数据源支持 #pr6 by yangBin666
- 升级分页插件 PageHelper 版本到 5.0.1
- 升级 MyBatis 版本到 3.4.4
- 升级 Spring Boot 版本到 1.5.3.RELEASE
- 升级 MyBatis-Starter 版本到 1.3.0
- 解决可能会注册两次分页插件的问题。
- 增加 PageHelperProperties 注入,常用属性可以通过 IDE 自动提示
一般情况下,你不需要做任何配置。
Normally, you don't need to do any configuration.
如果需要配置,可以使用如下方式进行配置:
You can config PageHelper as the following:
application.properties:
pagehelper.propertyName=propertyValue
注意 pagehelper 配置,因为分页插件根据自己的扩展不同,支持的参数也不同,所以不能用固定的对象接收参数,所以这里使用的 Map<String,String>
,因此参数名是什么这里就写什么,IDE 也不会有自动提示。
关于可配置的属性请参考 如何使用分页插件。
You can configure the properties of the reference here How to use the PageHelper.
如果你想要控制 拦截器插件的顺序,可以通过下面注解控制:
If you want to control the order in which the interceptor plug-in, you can use the following annotation control:
@AutoConfigureAfter(PageHelperAutoConfiguration.class)
//Or
@AutoConfigureBefore(PageHelperAutoConfiguration.class)