Springboot, JPA and Ignite

前端 未结 1 1407
深忆病人
深忆病人 2021-01-25 14:15

Caused by: org.springframework.data.mapping.PropertyReferenceException: No property save found for type Person!

Entity :

   @Entity

public class Person          


        
1条回答
  •  醉梦人生
    2021-01-25 14:30

    It seems that you are trying to use IgniteRepository to work with a JPA entity.

    I don't think that it's possible to marry these two. Spring JPA chokes on IgniteRepository custom methods trying to convert them into SQL, and even if it didn't it would still not work.

    IgniteRepository was just not designed for JPA.

    0 讨论(0)
提交回复
热议问题