Java-SDN 4-RC1:RelationRepository.save(relationshipEntity)不在图形中保存RelationshipEntities
作者:互联网
要使用neo4j-graphdatabase独立服务器,我将SDN 4.0.0.RC1的依赖项添加到pom中:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>4.0.0.RC1</version>
<exclusions>
<exclusion>
<groupId>org.neo4j.app</groupId>
<artifactId>neo4j-server</artifactId>
</exclusion>
</exclusions>
</dependency>
在我的申请中,我想管理家庭.人员作为节点实体,关系类型作为节点实体,家庭关系作为关系实体.
为了保存节点或关系,我使用了repository.save(T t)(存储库扩展了GraphRepository< T>).这适用于所有节点,但不适用于关系.
显式的无效代码:
Relation createdRelation = new Relation(typeName, from, to, getCurrentUsername());
createdRelation.setBegin(begin);
createdRelation.setEnd(end);
Relation relation = relationRepository.save(createdRelation);
我从save(T t)返回了一个关系对象.
但是RelationshipEntity不会持久保存在graphdatabase中.另外,我的关系对象没有任何ID.
RelationshipEntity类如下所示:
@RelationshipEntity(type = "RELATION")
public class Relation extends BaseMutableGraphEntity {
@Property
private String type;
@StartNode
private Person fromPerson;
@EndNode
private Person toPerson;
private Relation() {
}
...getters and setters...}
graph-id保存在BaseClass中:
public abstract class BaseGraphEntity implements AuditEntity {
@GraphId
private Long id;
...with getters and setters...}
我的问题是:
如何使用Spring Data Neo4j 4 RC1保存我的RelationshipEntities?
是否有其他用于RelationshipEntities的存储库?
P.S .:我试图将我的图形ID的位置更改为主要的RelationshipEntity,但是它不起作用.
解决方法:
我也遇到了这个怪癖,并且能够通过以下方式保持我的关系:
>在@StartNode实体上设置您的关系
>保存@StartNode实体或@RelationshipEntity,看来关键是必须先在@StartNode上设置对象
因此,在您的示例中,您将必须执行以下操作:
Relation createdRelation = new Relation(typeName, from, to, getCurrentUsername());
createdRelation.setBegin(begin);
createdRelation.setEnd(end);
begin.setRelation(createdRelation);
Relation relation = relationRepository.save(createdRelation);
所有人都说过,我不得不承认我不是100%知道这是否是应该完成的方式,因为在当前文档修订版中尚不清楚,但它似乎确实是SDN4示例测试中采用的方法:
https://github.com/spring-projects/spring-data-neo4j/blob/4.0.x/spring-data-neo4j/src/test/java/org/springframework/data/neo4j/examples/movies/MoviesIntegrationTest.java(请参阅findOneShouldConsiderTheEntityType)
标签:cypher,spring-data-neo4j,spring-data-neo4j-4,java 来源: https://codeday.me/bug/20191028/1949632.html