分页查询

先添加maven依赖

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper</artifactId>
    <version>4.2.0</version>
</dependency>
<dependency>
	<groupId>com.github.jsqlparser</groupId>
	<artifactId>jsqlparser</artifactId>
	<version>3.1</version>
</dependency>

配置核心文件

<!--集成分页助手插件-->
<plugins>
    <plugin interceptor="com.github.pagehelper.PaginationInterceptor"></plugin>
</plugins>

使用:

PageHelper.startPage(1,3)

表示一页三个数据

 

posted @ 2023-02-02 22:16  会秃头的小白  阅读(18)  评论(0编辑  收藏  举报