文章目录
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表
2. 封装一个DeptDao实体类
3. 在mapper.xml文件中写sql语句
<select id="getAll" resultType="Dept">
select * from dept
</select>
4.在mapper接口中创建一个方法
List<Dept> getAll();
5.测试
6. 查询结果