-
-
Notifications
You must be signed in to change notification settings - Fork 956
Migrate from Hibernate Criteria to JPA Criteria #14612
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi All, In my project we have extensively used hibernate criteria, which has now deprecated in newer releases. I tried to replace the same with the JPA criteria but faced some below mentioned issues:
My question is when we already define in the entity class then why we needs to do these all extra things. Please suggest the best solution on this, I didn't found any proper solution on this. Regards, |
I have been working on Grails Hibernate 6. The README is pretty up to date on progress. |
The Hibernate Criteria API has been deprecated in Hibernate. So we have to move to the JPA Criteria API in GORM.
This may be a good time to deprecate CriteriaBuilder and friends, recommending instead to use where queries and DetachedCriteria
The text was updated successfully, but these errors were encountered: