Releases: pagehelper/pagehelper-spring-boot
Releases · pagehelper/pagehelper-spring-boot
2.0.0 - 2023-11-05
- 升级 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
1.4.7 发布
1.4.6 发布
1.4.5 发布
1.4.4 发布
v1.3.0 - 2020-07-26
- 升级 PageHelper 到 5.2.0,包含大量改动,详细内容参考:PageHelper 更新日志
- 升级 MyBatis 到 3.5.5
- 升级 MyBatis Starter 到 2.1.3
- 升级 springboot 到 2.3.1.RELEASE
PageHelperAutoConfiguration
增加@Lazy(false)
注解,当配置延迟加载时,避免分页插件出错- 添加分页插件时判断是否已经配置过同一个实例(不同的配置是不同的实例)