JPA Pageable 无法分页问题

Posted 正怒月神

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JPA Pageable 无法分页问题相关的知识,希望对你有一定的参考价值。

每个人情况不一样。

首先,我使用了最新的spring boot版本

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.5.0</version>
    </parent>

在这个版本中,已经不使用 /*#pageable*/了,用了反而无法分页

@Query(value="select * from ad_plan plan \\n" ,countProjection = "*",nativeQuery = true)

对照老版本:
 

@Query(value="select * from ad_plan plan /*#pageable*/" ,countProjection = "*",nativeQuery = true)

以上是关于JPA Pageable 无法分页问题的主要内容,如果未能解决你的问题,请参考以下文章

如何使用带有 Pageable 的 Spring Data JPA 分页来更改数据?

springBoot JPA PageAble分页查询出错,PropertyReferenceException: No property creation found for type

Spring Data JPA之删除和修改

春季数据 jpa @query 和可分页

JPA @Query ERROR. token : WHERE

JPA自定义sql实现分页查询