I'm migrating a spring boot v2.7.x app to v3.4.0 At runtime, i'm getting "Applying Null Precedence using Criteria Queries is not yet supported." exception thrown.
|
throw new UnsupportedOperationException("Applying Null Precedence using Criteria Queries is not yet supported."); |
The exception was thrown when trying to execute my repository interface's method that looks something like Page<Xxx> findByXxxAndYyy(String xxx, yyy, Pageable pageable);.
I tried to switch to spring boot v3.3.6 and the app works without issue, so only seems to affect v3.4.0.
I placed a comment in a related issue.
Looks like a bug to me.
Thanks for reading & hope this issue can be solved soon.