You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pageable - the pageable to request a paged result, can be Pageable.unpaged(), must not be null. The given Pageable will override any previously specified sort if the Sort object is not Sort.isUnsorted(). Any potentially specified limit(int) will be overridden by Pageable.getPageSize().
So we expect that Pageable.sort takes precedence over any previously configured Sort if Pageable is sorted.
Care to elaborate what Spring Data module and which API (Querydsl, Specifications, Query by Example) you're using?
it possible to implement the method
fluentQuery.page(Pageble pagable)
for automatically callsortBy(Sort sort)
ifpagable.sort
is not null?The text was updated successfully, but these errors were encountered: