-
Notifications
You must be signed in to change notification settings - Fork 101
Closed
Labels
Description
I have a query in my repo:
boolean existsByReferenceUuid(UUID referenceUuid);
According to the documentation this should work, but when using it I retrieve this:
java.lang.ClassCastException: my.program.MyClass incompatible with java.lang.Boolean
This is my repo config:
public interface MyClassRepository extends RedisDocumentRepository<MyClass, UUID>