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
After having a look I've found the problem comes from light-admin/lightadmin-core/src/main/java/org/lightadmin/core/config/bootstrap/JpaMetamodelMappingContextFactoryBean.java file, at line 53 where the JpaMetamodelMappingContext is being initialized.
Newer versions of spring-data-jpa, changed the constructor from one instance of Metamodel to a Set, so basically in order to use light-admin you have to use an older version (e.g 1.7.0.RELEASE)
The text was updated successfully, but these errors were encountered:
alexandrustefan
changed the title
Update to newer Spring Data JPA version to latest release (1.9.2.RELEASE)
Update to newer version of Spring Data JPA (1.8.0.RELEASE - 1.9.2.RELEASE)
Jan 21, 2016
While trying to integrate with lightadmin, I encountered the following exception at the initialization of the
jpaMapppingContext
After having a look I've found the problem comes from
light-admin/lightadmin-core/src/main/java/org/lightadmin/core/config/bootstrap/JpaMetamodelMappingContextFactoryBean.java
file, at line 53 where theJpaMetamodelMappingContext
is being initialized.Newer versions of spring-data-jpa, changed the constructor from one instance of
Metamodel
to a Set, so basically in order to use light-admin you have to use an older version (e.g 1.7.0.RELEASE)The text was updated successfully, but these errors were encountered: