【MyBatis框架】第六章 PageHelper

第六章 PageHelper

  • 第六章 PageHelper
    • 1.加入依赖pagehelper依赖
    • 2.在mybatis主配置文件, 加入plugin声明
    • 3.在select语句之前,调用PageHelper.startPage(页码, 每页大小)

欢迎来到本博客
作者简介:阿斯卡码,专注于研究Java框架/Vue,就读于河南中医药大学,刚刚入门项目开发
CSDN编程比赛奖章获得者/Java领域创作者
计划学习:深入学习Spring全家桶,Vue, mybatis,Mysql等领域。(目前涉及不深入)
如果此文还不错的话,还请关注、点赞、收藏三连支持一下博主~

第六章 PageHelper

PageHelper做数据分页。 在你的select语句后面加入 分页的 sql 内容, 如果你使用的mysql数据库, 它就是在select * from student 后面加入 limit 语句。

使用步骤:

1.加入依赖pagehelper依赖

<dependency>
<groupId>com.github.pagehelpergroupId>
<artifactId>pagehelperartifactId>
<version>5.1.10version>
dependency>

2.在mybatis主配置文件, 加入plugin声明

<environments> 之前加入
<plugins>
   <plugin interceptor ="com.github.pagehelper.PageInterceptor" />
plugins>    

3.在select语句之前,调用PageHelper.startPage(页码, 每页大小)

对比:

没有使用PageHelper

select * from student order by id

使用PageHelper

SELECT count(0) FROM student

select * from student order by id LIMIT ?

你可能感兴趣的:(Mybatis,mybatis,oracle,数据库)