请在springboot项目中设计一个公用的有条件的PageHelper分页查询
时间: 2024-03-16 19:46:45 浏览: 140
好的,我可以为您提供以下的代码示例来实现这个功能:
首先需要引入PageHelper依赖:
```xml
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.3.0</version>
</dependency>
```
接下来创建一个公用的分页查询方法:
```java
@Service
public class MyService {
@Autowired
private MyMapper myMapper;
public PageInfo<MyEntity> findMyEntitiesWithConditions(int pageNum, int pageSize, String name, int age) {
PageHelper.startPage(pageNum, pageSize);
List<MyEntity> myEntities = myMapper.selectMyEntitiesWithConditions(name, age);
return new PageInfo<>(myEntities);
}
}
```
在上述代码中,我们使用了PageHelper.startPage方法来开启分页查询,传入的参数是当前页码和每页显示的记录数。然后调用MyMapper的selectMyEntitiesWithConditions方法,该方法接收name和age两个参数,用于动态构建查询条件。最后将查询结果封装到PageInfo对象中并返回。
在MyMapper中,可以使用注解@Param来接收参数,并且使用if标签来判断是否需要动态添加查询条件:
```xml
<select id="selectMyEntitiesWithConditions" resultType="MyEntity">
select * from my_table
<where>
<if test="name != null and name != ''">
and name like CONCAT('%', #{name}, '%')
</if>
<if test="age != 0">
and age = #{age}
</if>
</where>
</select>
```
上述代码中,我们使用了两个if标签来判断是否需要添加name和age两个查询条件。如果name不为空,那么就使用like方式进行模糊查询;如果age不为0,则使用等于方式进行精确查询。
最后,我们可以在Controller中调用MyService的findMyEntitiesWithConditions方法来实现分页查询:
```java
@RestController
public class MyController {
@Autowired
private MyService myService;
@GetMapping("/myEntities")
public PageInfo<MyEntity> findMyEntitiesWithConditions(@RequestParam(defaultValue = "1") int pageNum,
@RequestParam(defaultValue = "10") int pageSize,
String name,
int age) {
return myService.findMyEntitiesWithConditions(pageNum, pageSize, name, age);
}
}
```
在上述代码中,我们使用了@RequestParam注解来接收请求参数,其中pageNum和pageSize是必传的,name和age是可选的。最后将查询结果封装到PageInfo对象中并返回。
阅读全文