org.neo4j.ogm.annotation.NodeEntity;import org.springframework.data.annotation.Idorg.neo4j.ogm.exception.MappingException: No identity field found for class: movies.spring.data.neo4j.domain.Movie是我用来编写这段代码的引用,我使用的
我正在使用SpringDataNeo4J来定义不同人之间的非定向关系。下面提供了一个示例实体类。这种关系是无方向的,以确保如果一个人A是"Friend_With“人B,那么人B也是"Friend_With”人A。但是当我查询时,在Neo4J中使用
MATCH (p:Person)-[r:FRIEND_WITH]->(b:Person) where p.name = "PersonA"
我正在使用带有嵌入式neo4j的SDN。我必须使用bean validate,但它不是working.null保存在数据库中,没有任何异常。依赖关系是 // specify dependencies here under either 'build', 'compile', 'runtime', 'test:spring-data-neo4j:3.2.0.REL