mybatis使用pgsql带条件分页查询
时间: 2023-08-08 12:12:02 浏览: 609
Mybatis使用pgsql进行带条件分页查询的步骤如下:
1. 首先,在mybatis的主配置文件mybatis-config.xml中配置分页插件。可以使用PageHelper插件来实现分页功能。在plugins标签中添加以下配置:
```xml
<plugins>
<!-- 分页插件拦截器 -->
<plugin interceptor="com.github.pagehelper.PageInterceptor"></plugin>
</plugins>
```
2. 在Mapper接口中定义带条件分页查询的方法。例如,在Mapper接口中添加以下方法:
```java
List<Student> queryStudentListByPage(@Param("condition") String condition, @Param("pageNum") int pageNum, @Param("pageSize") int pageSize);
```
3. 在Mapper的XML文件中编写对应的SQL语句。例如,在mapper.xml文件中添加以下内容:
```xml
<select id="queryStudentListByPage" resultType="Student">
SELECT * FROM student
WHERE condition = #{condition}
LIMIT #{pageNum}, #{pageSize}
</select>
```
4. 在Service层中调用Mapper接口的方法进行分页查询。例如,在Service层中添加以下代码:
```java
public List<Student> queryStudentListByPage(String condition, int pageNum, int pageSize) {
return studentDao.queryStudentListByPage(condition, (pageNum - 1) * pageSize, pageSize);
}
```
5. 在Controller层中调用Service层的方法进行分页查询。例如,在Controller层中添加以下代码:
```java
@PostMapping("/queryStudentListByPage")
public Result queryStudentListByPage(@RequestParam("condition") String condition, @RequestParam("pageNum") int pageNum, @RequestParam("pageSize") int pageSize) {
List<Student> students = studentService.queryStudentListByPage(condition, pageNum, pageSize);
return Result.ok(students);
}
```
通过以上步骤,你可以使用Mybatis和Pgsql进行带条件分页查询。在Controller层中调用对应的接口,传入条件、页码和每页数量,即可获取分页查询结果。
#### 引用[.reference_title]
- *1* *3* [Mybatis 分页查询(实战版)](https://blog.csdn.net/qq_46703281/article/details/127751056)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [Mybatis 使用分页插件 进行分页查询](https://blog.csdn.net/weixin_55556204/article/details/125314809)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文