- 添加依赖
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.2</version>
</dependency>
- 在mybatis配置文件mybatis.xml添加拦截器插件
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<property name="reasonable" value="false"/>//合理化
</plugin>
</plugins>
注意确保在spring.xml文件指明了mybatis.xml,拦截器才起作用
- 使用时一般在mapper方法调用之前开启分页
- 然后在controller层包装
-
更多详细使用可以看看这篇文章
https://blog.csdn.net/u012562943/article/details/51838759