您的位置:首页 > 编程语言 > Java开发

关于Spring JPA @query 方法添加 Pageable 的问题记录

2017-02-10 00:00 489 查看
由于需要在一个自定义sql语句下添加分页功能,想用直接用JpaRepository 的 Pageable 来直接实现(数据库 oracle)
于是参考文档[Example 51. Declare native count queries for pagination at the query method using @Query](https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#jpa.query-methods.at-query)

public interface UserRepository extends JpaRepository<User, Long> {

@Query(value = "SELECT * FROM USERS WHERE LASTNAME = ?1",
countQuery = "SELECT count(*) FROM USERS WHERE LASTNAME = ?1",
nativeQuery = true)
Page<User> findByLastname(String lastname, Pageable pageable);
}

但实际使用后, 启动工程发生异常:

org.springframework.data.jpa.repository.query.InvalidJpaQueryMethodException: Cannot use native queries with dynamic sorting and/or pagination in method

然后上网搜索了下异常, 解决方案是 添加 #pageable 或 /n#pageable/n ,工程可以正常启动,但运行到该处时,报出另外一个数据库异常:

java.sql.SQLSyntaxErrorException: ORA-00911: 无效字符
o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 911, SQLState: 22019

由此可以判断是数据库报出的异常, 于是查询log的sql文:

org.hibernate.SQL - select * from ( select * From Pencil where id in (select distinct pencilid from Touser where touser = ? ) #pageable ) where rownum <= ?

由此可以判断,无效字符应该是#pageable, 到目前为止,可以推测到JPA可能需要pageable字符来使工程正常启动,而由于使用#pageable导致sql文执行时报出无效字符, 由此推测,尝试使用注释来避免sql文报错,修改sql文如下:

public interface UserRepository extends JpaRepository<User, Long> {

@Query(value = "SELECT * FROM USERS WHERE LASTNAME = ?1 order by LASTNAME   /* #pageable */",
countQuery = "SELECT count(*) FROM USERS WHERE LASTNAME = ?1",
nativeQuery = true)
Page<User> findByLastname(String lastname, Pageable pageable);
}

执行成功,但很遗憾的是,如果不用sql文的order by 而使用pageable 中的Sort时, sql文解析会出现 order by where.XXX(字段名) . 然后报错.
因此此手动添加order by.

==========================================================

关于order by 的问题可以通过给表设置变量名来实现

@Query(value = "select p.* From Pencil p where p.id in (select distinct pencilid from Touser where touser = ?1 )  /* #pageable# */",
countQuery = "select count(*) From Pencil p where p.id in (select distinct pencilid from Touser where touser = ?1 )",
nativeQuery = true)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐