Skip to content

Releases: pagehelper/pagehelper-spring-boot

2.0.0 - 2023-11-05

05 Nov 05:20
Compare
Choose a tag to compare
  • 升级 PageHelper 到 6.0.0,支持异步 count 等功能,详细查看 6.0
  • 升级 MyBatis 到 3.5.15
  • 升级 springboot 到 2.7.17
  • 新增参数 asyncCount,增加异步count支持,默认false,单次设置:PageHelper.startPage(1, 10).enableAsyncCount();
  • 新增参数 countSqlParserCountSqlParser改为接口,允许通过countSqlParser参数替换为自己的实现

参数示例:

pagehelper.async-count=true

1.4.7 发布

03 Jun 03:13
Compare
Choose a tag to compare

v1.4.7 - 2023-06-03

  • 升级 PageHelper 到 5.3.3
  • 升级 MyBatis 到 3.5.13
  • 升级 MyBatis Starter 到 2.3.1
  • 升级 springboot 到 2.7.12

1.4.6 发布

28 Nov 02:09
Compare
Choose a tag to compare
  • 兼容 Spring Boot 3.0 by pky920216344
  • 功能完善:存在PageInterceptor及其子类就不再添加过滤器 by jingheee

1.4.5 发布

18 Sep 16:08
Compare
Choose a tag to compare

v1.4.5 - 2022-09-18

  • 升级 PageHelper 到 5.3.2

1.4.4 发布

15 Sep 16:28
Compare
Choose a tag to compare
<dependency>
  <groupId>com.github.pagehelper</groupId>
  <artifactId>pagehelper-spring-boot-starter</artifactId>
  <version>1.4.4</version>
</dependency>

v1.4.4 - 2022-09-16

  • 修复配置文件中kebab-case风格的配置项失效的问题 pr#138, by ShoWen
  • 兼容性支持,demo配置修改
  • 升级 springboot 到 2.7.3

v1.3.0 - 2020-07-26

27 Jul 13:46
Compare
Choose a tag to compare
  • 升级 PageHelper 到 5.2.0,包含大量改动,详细内容参考:PageHelper 更新日志
  • 升级 MyBatis 到 3.5.5
  • 升级 MyBatis Starter 到 2.1.3
  • 升级 springboot 到 2.3.1.RELEASE
  • PageHelperAutoConfiguration 增加 @Lazy(false) 注解,当配置延迟加载时,避免分页插件出错
  • 添加分页插件时判断是否已经配置过同一个实例(不同的配置是不同的实例)