PageHelper integration with Spring Boot

PageHelper-Spring-Boot-Starter 帮助你集成分页插件到 Spring Boot。

PageHelper-Spring-Boot-Starter will help you use PageHelper with Spring Boot.

Support PageHelper 5.x

How to use

在 pom.xml 中添加如下依赖:

Add the following dependency to your pom.xml:

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper-spring-boot-starter</artifactId>
    <version>1.2.13</version>
</dependency>

v1.2.13 - 2019-11-26

v1.2.12 - 2019-06-05

v1.2.11 - 2019-05-29

v1.2.10 - 2018-11-11

v1.2.9 - 2018-10-11

v1.2.8 由于未修改版本,仍然和 v1.2.7 相同。

v1.2.7 - 2018-09-04

v1.2.6 - 2018-09-04

v1.2.5 - 2018-04-22

v1.2.4 - 2018-04-07

v1.2.3 - 2017-09-25

v1.2.2 - 2017-09-18

v1.2.1 - 2017-08-30

v1.2.0 - 2017-08-28

v1.1.3 - 2017-08-01

v1.1.2 - 2017-06-28 by drtrang

v1.1.1 - 2017-04-25

v1.1.0 - 2017-02-04

IDE 自动提示

Example

https://github.com/abel533/MyBatis-Spring-Boot

PageHelper

https://github.com/pagehelper/Mybatis-PageHelper

Special Configurations

一般情况下,你不需要做任何配置。

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.

Interceptor Order

如果你想要控制 拦截器插件的顺序,可以通过下面注解控制:

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)