JPA原生SQL和Pageable配合报错解决
最近在做公司的项目,然后使用了JPA中的分页Pageable配合原生SQL编写分页SQL,结果一直报错
报错:
could not extract ResultSet; SQL [n/a]; nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet
修改前SQL代码:
@Query(value = "select ds.* from drugstore_seq ds where (:bussType is null or buss_type = :bussType) " +
"",nativeQuery = true)
Page<DrugstoreSeq> findAllDrugstoreSeq(@Param(value = "bussType") Integer bussType, Pageable pageable);
出现这个错误的原因是原生SQL和Pageable编写出错了,我们写代码一般都是要求简化,业务清晰,所以我们把SQL优化一下。
修改后SQL代码:
@Query(value = "select ds from DrugstoreSeq ds where (:bussType is null or ds.bussType = :bussType) " )
Page<DrugstoreSeq> findAllDrugstoreSeq(@Param(value = "bussType") Integer bussType, Pageable pageable);
pageable处代码:PageRequest.of(page - 1, limit, Sort.Direction.DESC, “createDate”)
还有另外一种方法我就不讲解了,因为太麻烦了,感兴趣的可以去官网查看
问题解决