本文介绍了Querydsl 限制记录示例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要通过querydsl
选择限制记录,我的查询是这样的:
I need to select limit record by querydsl
, my query is like:
select *from <table> where <column_id> = 5 limit 2
如何在我的存储库接口方法中对上述给定查询进行查询?
How can I do a query in my repository interface method to the given above query?
推荐答案
使用 QueryDslPredicateExecutor.findAll(Predicate predicate, Pageable pageable)
然后使用 PageRequest.of(0,限制)
.
这篇关于Querydsl 限制记录示例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!