14-MyBatis PageHelper数据分页

14-MyBatis PageHelper数据分页,第1张

14-MyBatis PageHelper数据分页

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

使用步骤:

1.加入依赖pagehelper依赖


	com.github.pagehelper
	pagehelper
	5.1.10

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

    
    
        
    

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

xml