Querydsl限制记录示例

时间:2016-05-23 14:17:22

标签: spring-data-jpa querydsl

我需要按querydsl选择限制记录,我的查询如下:

select *from <table> where <column_id> = 5 limit 2

如何在我的存储库接口方法中对上面给出的查询进行查询?

1 个答案:

答案 0 :(得分:3)

使用QueryDslPredicateExecutor.findAll(Predicate predicate, Pageable pageable),然后使用new PageRequest(0, limit)返回实际结果。