-
-
Notifications
You must be signed in to change notification settings - Fork 75
HibernateProxyHandler relies on Javassist which has been removed in Hibernate 5.6 #464
Comments
This is preventing us from upgrading too. #175 |
Could you please verify if manually adding Javassist dependency resolves the problem? |
FYI, we have not found a solution for the bytebuddy hydration. with anything past hibernate 5.5.9 and Gorm its impossible to have proxies working. What we have found that works is to force the hibernate to version |
… Javassist collions. uses Hibernate helpers. Mark SimpleHibernateProxyHandler as deprecated. Add tests to show the proxy problems with groovy resolves grails#464 resolves grails#175
Hibernate 5.6 has removed usage of javassist but the gorm-hibernate5 library still seems to depend on it for the HibernateProxyHandler.
This is causing us some compilation issues as we were using the HibernateProxyHandler directly:
It seems like version 7.2 and later which require Hibernate 5.6 should be using the ByteBuddy stuff instead of Javassist.
The text was updated successfully, but these errors were encountered: