首先,确保你的实体类和数据库表已经定义好了。假设你有一个实体类 Product
,表示产品信息:
@Entity
public class Product {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
private double price;
// Getters and Setters
}
接下来,在你的 ProductRepository
接口中定义一个方法来进行分页查询:
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;
public interface ProductRepository extends JpaRepository<Product, Long> {
Page<Product> findAll(Pageable pageable);
}
然后,在你的Service层或者Controller层中调用这个方法来获取分页数据:
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ProductController {
@Autowired
private ProductRepository productRepository;
@GetMapping("/api/products")
public Page<Product> getProducts(@RequestParam(defaultValue = "0") int page,
@RequestParam(defaultValue = "10") int size) {
Pageable pageable = PageRequest.of(page, size);
return productRepository.findAll(pageable);
}
}
在这个示例中,getProducts
方法接受两个参数:page
和 size
,分别表示要获取的页数和每页的大小。然后,它使用这些参数创建一个 Pageable
对象,并调用 findAll
方法来执行分页查询。
这样,你就可以通过访问 /api/products?page=0&size=10
来获取第一页的产品数据,每页包含10条记录。