mybatis分页查询

文章目录

mybatis分页查询

添加依赖

<dependency>
     <groupId>com.github.pagehelper</groupId>
     <artifactId>pagehelper</artifactId>
     <version>5.2.0</version>
</dependency>

在mybatis的配置文件中配置分页插件

<!--配置分页插件-->
    <plugins>
        <plugin interceptor="com.github.pagehelper.PageInterceptor"></plugin>
    </plugins>

测试分页方法

1.创建dept表
mybatis分页查询
2. 封装一个DeptDao实体类
mybatis分页查询
3. 在mapper.xml文件中写sql语句

<select id="getAll" resultType="Dept">
    select * from dept
</select>

4.在mapper接口中创建一个方法

List<Dept> getAll();

5.测试
mybatis分页查询
6. 查询结果
mybatis分页查询
mybatis分页查询

上一篇:pagehelper


下一篇:【死磕 Java 基础】— 我同事一个 select 分页语句查出来了 3000W 条数据