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
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.
thrownewUnsupportedOperationException("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.