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)

 

posted @ 2021-07-19 14:40  正怒月神  阅读(225)  评论(0编辑  收藏  举报