Java代码 springboot 分页查询代码
时间: 2023-03-29 12:00:58 浏览: 120
springboot+jpa+thymeleaf实现增删改查分页查询
以下是一个简单的 Spring Boot 分页查询代码示例:
```
@GetMapping("/users")
public Page<User> getUsers(@RequestParam(defaultValue = "") int page,
@RequestParam(defaultValue = "10") int size) {
Pageable pageable = PageRequest.of(page, size);
return userRepository.findAll(pageable);
}
```
这个代码片段使用了 Spring Data JPA 的 `Pageable` 和 `PageRequest` 接口来实现分页查询。`userRepository.findAll(pageable)` 方法会返回一个 `Page` 对象,其中包含了查询结果和分页信息。
阅读全文