Hi,
I have @Type hibernate annotation used in my entity class.
Code:
@Type(type = "true_false")
private Boolean isTrue;
But OGM does not seem to be supporting this resulting in following exception:
Code:
Caused by: org.hibernate.HibernateException: OGM000059: Unable to find a GridType for java.lang.Boolean
at org.hibernate.ogm.type.impl.TypeTranslatorImpl.getType(TypeTranslatorImpl.java:100)
at org.hibernate.ogm.persister.impl.OgmEntityPersister.<init>(OgmEntityPersister.java:272)
... 41 more
Is there any workaround that I can use?
Thanks,
Abhishek