pageHelper使用

  • 添加依赖
<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,拦截器才起作用
pageHelper使用

上一篇:java.lang.ClassCastException: java.util.ArrayList cannot be cast to com.github.pagehelper.Page


下一篇:Springboot之PageHelper分页插件的使用