Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在使用 Spring Data JPA 存储库。对于分页,我们将 Pageable 对象传递给 JPA 存储库 findBy 方法。
由于在我们的 UI 中,我们不显示记录的总数,因此我们不希望触发计数查询。有什么方法可以抑制分页期间触发的计数查询?
让您的存储库方法返回List<Entity>而不是Page<Entity>,我相信它不会运行计数查询。
List<Entity>
Page<Entity>
请参阅Spring Data JPA 文档部分“1.2.2 定义查询方法”中的“特殊参数处理”。