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
Based on spring-projects/spring-data-jpa#3294, Query by Example and Querydsl findBy(…) methods must return a result to prevent leaking the query object. Query objects are often associated with state that is only valid inside the findBy(…) method (e.g. AOP, transactions) and the query object is no longer valid outside of the method call.
The text was updated successfully, but these errors were encountered:
Based on spring-projects/spring-data-jpa#3294, Query by Example and Querydsl
findBy(…)
methods must return a result to prevent leaking the query object. Query objects are often associated with state that is only valid inside thefindBy(…)
method (e.g. AOP, transactions) and the query object is no longer valid outside of the method call.The text was updated successfully, but these errors were encountered: