Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Luis MajanoLuis MajanoReporter
Brad WoodBrad WoodComponents
Fix versions
Affects versions
Priority
Critical
Details
Details
Assignee
Luis Majano
Luis MajanoReporter
Brad Wood
Brad WoodComponents
Fix versions
Affects versions
Priority
Sentry
Sentry
Sentry
Created November 11, 2017 at 7:39 PM
Updated February 9, 2018 at 9:40 PM
Resolved February 9, 2018 at 9:40 PM
The ORM beanpopulator is not compatible with Hibernate 5. An example is line 307 of system/core/dynamic/BeanPopulator.cfc where we have code like this:
ORMGetSessionFactory().getAllClassMetadata()
That code throws this error in Hibernate 5
org.hibernate.SessionFactory.getAllClassMetadata is no longer supported
We need to detect the Hibernate version and replace it with a call to EntityManagerFactory.getMetamodel() instead.
https://stackoverflow.com/questions/40110913/hibernate-5-2-3-sessionfactory-getallclassmetadata-is-no-longer-supported