JPA自定义sql实现分页查询
CustomerRepository.java@Query(nativeQuery = true, value = "select * from adm_sys_customer ORDER BY ?#{#pageable}",
countQuery = "select count(*) from adm_sys_customer")
Page findAllByPageable(Pageable pageable);
CustomerServiceImpl.java
//调用自定义sql
Page pageObjectList = customerRepos.findAllByPageable(pageService.getPageable(1, 1, null));
ORDER BY ?#{#pageable} 必须加,否则报错:
Caused by: org.springframework.data.jpa.repository.query.InvalidJpaQueryMethodException:
Cannot use native queries with dynamic sorting and/or pagination in ...
参考:https://www.cnblogs.com/jiangxiaoyaoblog/p/5635152.html
页:
[1]