Mybatis分页插件PageHelper5.x和之前版本配置区别(含SpringBoot)

文章目录

      • 1、5系列之前版本
      • 2、5系列
      • 3、SpringBoot配置PageHelper

以下代码为mybatis的配置文件中的片段

1、5系列之前版本

<plugins>
    
    <plugin interceptor="com.github.pagehelper.PageHelper">
        
        <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.pagehelpergroupId>
    <artifactId>pagehelper-spring-boot-starterartifactId>
    <version>1.2.10version>
dependency>

然后在application.yml中可以直接进行配置

#pagehelper分页插件配置
pagehelper.helperDialect=mysql

附上PageHelper的参考网址:PageHelper

你可能感兴趣的:(MyBatis)