gpt4 book ai didi

mongodb - Spring数据mongo分页

转载 作者:行者123 更新时间:2023-12-02 03:26:14 28 4
gpt4 key购买 nike

我想用 Spring Data Mongo 实现分页。有很多教程和文档建议使用 PagingAndSortingRepository,如下所示:

StoryRepo extends PagingAndSortingRepository<Story, String>{}

因为 PagingAndSortingRepository 提供了用于分页查询的 api,所以我可以像这样使用它:

Page<Story> story = storyRepo.findAll(pageable);

我的问题是这里的 findAll 方法实际上是在哪里实现的?我需要自己写它的实现吗?实现StoryRepo的StoryRepoImpl需要实现这个方法吗?

最佳答案

您不需要实现该方法,因为当您 Autowiring Spring 对象 PagingAndSortingRepository 时,它会自动为您实现该方法。

请注意,由于您使用的是 Mongodb,因此您可以扩展 MongoRepository。

然后在 Spring 中,使用以下命令启用分页:

@RequestMapping(value="INSERT YOUR LINK", method=RequestMethod.GET)
public List<Profile> getAll(int page) {
Pageable pageable = new PageRequest(page, 5); //get 5 profiles on a page
Page<Profile> page = repo.findAll(pageable);
return Lists.newArrayList(page);

关于mongodb - Spring数据mongo分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20366666/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com