Hi ,
I ma trying to integrate spring data with ápache ignite and when my repository extends IgniteRepository it throws exception …
Caused by: org.springframework.data.mapping.PropertyReferenceException: No property save found for type MyEntity! Did you mean 'name'?
@Component
@RepositoryConfig(cacheName = "MyCache")
public interface MyRepository extends IgniteRepository<MyEntity, Long> {
and when I extends JpaRepository it wroks fine…
public interface MyRepository extends JpaRepository<MyEntity, Long> {
can any one suggest how to fix this issue ??
Regards
Baldeep Singh