admin管理员组文章数量:1344241
I can't seem to figure out how to combine JpaSpecificationExecutor
with Keyset scrolling (hence Window
return type).
It shows me errors of this kind:
At least 1 parameter(s) provided but only 0 parameter(s) present in query
I'm trying to use it like these:
@Repository
interface UserRepository : JpaRepository<User, Int>, JpaSpecificationExecutor< User > {
...
fun findBy(spec: Specification<User>, limit: Limit, position: ScrollPosition): Window<User>
I call it like this:
val spec: Specification<User> = Specification { root, query, criteriaBuilder ->
criteriaBuilder.equal(root.get<String>("name"), "John")
}
val position = ScrollPosition.keyset()
val limit = Limit.of(10)
val rows = userRepository.findBy(spec, position, limit)
It fails on the last line, when calling findBy
.
I also tried to tweak it in various ways, tried TypedQuery
and KeysetScrollSpecification
for customizing the query, and it all gives the same errors.
Any ideas how to make it work? It seems all the specification / criteria API is only compatible with offset based paging? What would be my options for building more complex queries with keyset scrolling?
本文标签:
版权声明:本文标题:kotlin - JPA: how to use Specification or TypedQuery together with KeysetScrollPosition and Window - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743744779a2531553.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论