当前位置: 代码迷 >> 综合 >> SpringBoot JPA JPQL limit使用
  详细解决方案

SpringBoot JPA JPQL limit使用

热度:30   发布时间:2023-12-18 09:33:28.0

JPQL是不支持关键词limit的,想使用,需要借助PageRequest对象
PageRequest.of(page,pageSize)

@Query("SELECT s FROM Students s ORDER BY s.id DESC")
List<Students> getLastStudentDetails(PageRequest pageRequest);
  相关解决方案