Good morning!
My Spring application doesn't seem to detect existsBy projections
Caused by: org.springframework.data.mapping.PropertyReferenceException: No property existsById found for type Planet!
at org.springframework.data.mapping.PropertyPath.<init>(PropertyPath.java:77)
at org.springframework.data.mapping.PropertyPath.create(PropertyPath.java:329)
at org.springframework.data.mapping.PropertyPath.create(PropertyPath.java:309)
at org.springframework.data.mapping.PropertyPath.from(PropertyPath.java:272)
Code in the repository
public boolean existsByIdAndOwnerId(Long planetId, Integer ownerId);
- Spring version: 4.3.12.RELEASE
- Hibernate version: 5.2.12.Final
- Spring Data JPA version: 1.11.7.RELEASE
Thanks in advance!