mybatis
实现数据的分页功能(H):
首先添加PageHelper依赖:
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.10</version>
</dependency>
配置插件:在mybatis.xml文件中的environments上面添加
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor"/>
</plugins>
使用:(pageNum:第几页 ,pageSize:一页中共有几行数据);
PageHelper.startPage(pageNum:,pageSize);
SSM学习(mybatis)
最新推荐文章于 2024-11-02 15:22:06 发布