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 
" ,countProjection = "*",nativeQuery = true)

对照老版本:

@Query(value="select * from ad_plan plan /*#pageable*/" ,countProjection = "*",nativeQuery = true)
原文地址:https://www.cnblogs.com/hanjun0612/p/15030082.html