gpt4 book ai didi

java - SDN 4-RC1 : RelationRepository. save(relationshipEntity) 不在图形中保存关系实体

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:08:59 25 4
gpt4 key购买 nike

为了使用 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>

在我的应用程序中,我想管理家庭。人作为 NodeEntities,关系类型作为 NodeEntities,家庭关系作为 RelationshipEntities。

为了保存节点或关系,我使用 repository.save(T t) (repository extends 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 并没有保存在图形数据库中。我的关系对象也没有任何 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 是否有其他存储库?

P.S.:我试图将我的 graph-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)

关于java - SDN 4-RC1 : RelationRepository. save(relationshipEntity) 不在图形中保存关系实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31541192/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com