Mybatis分页插件PageHelper5.x和之前版本配置区别(含SpringBoot)
·
以下代码为mybatis的配置文件中的片段
1、5系列之前版本
<plugins>
<!-- com.github.pagehelper为PageHelper类所在包名 -->
<plugin interceptor="com.github.pagehelper.PageHelper">
<!-- 4.0.0以后版本可以不设置该参数 -->
<property name="dialect" value="mysql"/>
</plugin>
</plugins>
2、5系列
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<!-- 使用下面的方式配置参数,后面会有所有的参数介绍 -->
<property name="helperDialect" value="mysql"/>
</plugin>
</plugins>
3、SpringBoot配置PageHelper
首先添加依赖
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.10</version>
</dependency>
然后在application.yml中可以直接进行配置
#pagehelper分页插件配置
pagehelper.helperDialect=mysql
附上PageHelper的参考网址:PageHelper
更多推荐
已为社区贡献1条内容
所有评论(0)