首页 > 数据库技术 > 详细

JPA自定义sql实现分页查询

时间:2018-01-08 16:36:40      阅读:1756      评论:0      收藏:0      [点我收藏+]
CustomerRepository.java

@Query(nativeQuery = true, value = "select * from adm_sys_customer ORDER BY ?#{#pageable}",
countQuery = "select count(*) from adm_sys_customer")
Page<Customer> findAllByPageable(Pageable pageable);

CustomerServiceImpl.java

//调用自定义sql
Page<Customer> 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

JPA自定义sql实现分页查询

原文:http://blog.51cto.com/1385903/2058646

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!