标签: spring-data-jpa querydsl
我需要按querydsl选择限制记录,我的查询如下:
querydsl
select *from <table> where <column_id> = 5 limit 2
如何在我的存储库接口方法中对上面给出的查询进行查询?
答案 0 :(得分:3)
使用QueryDslPredicateExecutor.findAll(Predicate predicate, Pageable pageable),然后使用new PageRequest(0, limit)返回实际结果。
QueryDslPredicateExecutor.findAll(Predicate predicate, Pageable pageable)
new PageRequest(0, limit)