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
if (Persistable.class.isAssignableFrom(entityType)) {
return new PersistableEntityInformation(entityType);
}
return new ReflectionEntityInformation(entityType);
}
The text was updated successfully, but these errors were encountered:
I want to use this repo with latest spring boot version 2.3.5.RELEASE.. It give some compile time error due to some refactoring with upgraded version. This is one compiler issue https://stackoverflow.com/questions/64963585/how-to-create-persistententityinformation-object?noredirect=1#comment114852341_64963585
As PersistableEntityInformation and ReflectionEntityInformation both are removed with latest version.
I don't find any way to use PersistentEntityInformation instead into createEntityInformation()
@SuppressWarnings("unchecked")
private EntityInformation<T, ID> createEntityInformation() {
Class entityType = (Class) GenericTypeResolver.resolveTypeArguments(
getClass(), BaseJdbcRepository.class)[0];
The text was updated successfully, but these errors were encountered: