SDN 4-RC1:RelationRepository.save(relationshipEntity) 不在图形中保存 RelationshipEntities
SDN 4-RC1: RelationRepository.save(relationshipEntity) don't save RelationshipEntities in Graph
为了使用 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 class 看起来像这样:
@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
)
这是解决我问题的代码,谢谢simonl!
Relation relation = new Relation(typeName, from, to, getCurrentUsername());
relation.setBegin(begin);
relation.setEnd(end);
from.addOutgoingRelation(relation);
personRepository.save(from);
return createResponseBuilder.build(relation);
...我将代码更改为
Relation relation = new Relation(typeName, from, to, getCurrentUsername());
relation.setBegin(begin);
relation.setEnd(end);
from.addOutgoingRelation(relation);
return createResponseBuilder.build(relationRepository.save(relation));
因为 Luannes 评论,也谢谢你!
您看到的是对象图(您的域模型)与您期望的实际图不对应的事实。
Relation createdRelation = new Relation(typeName, from, to, getCurrentUsername());
createdRelation.setBegin(begin);
createdRelation.setEnd(end);
Relation relation = relationRepository.save(createdRelation);
这里,关系实体正确地表示了具有开始节点和结束节点的关系。现在,如果您尝试将此 "object graph" 导航到起始实体,即 begin
,您会发现无法通过关系导航到结束实体 end
。
当实体被持久化时,遍历对象图以确定什么是新的或被修改的并持久化那些。在这种情况下,当遍历到达您的起始节点时,它找不到与其他节点的关系,实际上,应该创建的这种关系没有。
Simon 的代码之所以有效,是因为他使实体图与物理图保持一致。然后您可以保存最后的实体或关系实体本身。
如果您将您的对象视为图表,那么这一切都会一目了然。
为了使用 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 class 看起来像这样:
@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
)
这是解决我问题的代码,谢谢simonl!
Relation relation = new Relation(typeName, from, to, getCurrentUsername());
relation.setBegin(begin);
relation.setEnd(end);
from.addOutgoingRelation(relation);
personRepository.save(from);
return createResponseBuilder.build(relation);
...我将代码更改为
Relation relation = new Relation(typeName, from, to, getCurrentUsername());
relation.setBegin(begin);
relation.setEnd(end);
from.addOutgoingRelation(relation);
return createResponseBuilder.build(relationRepository.save(relation));
因为 Luannes 评论,也谢谢你!
您看到的是对象图(您的域模型)与您期望的实际图不对应的事实。
Relation createdRelation = new Relation(typeName, from, to, getCurrentUsername());
createdRelation.setBegin(begin);
createdRelation.setEnd(end);
Relation relation = relationRepository.save(createdRelation);
这里,关系实体正确地表示了具有开始节点和结束节点的关系。现在,如果您尝试将此 "object graph" 导航到起始实体,即 begin
,您会发现无法通过关系导航到结束实体 end
。
当实体被持久化时,遍历对象图以确定什么是新的或被修改的并持久化那些。在这种情况下,当遍历到达您的起始节点时,它找不到与其他节点的关系,实际上,应该创建的这种关系没有。
Simon 的代码之所以有效,是因为他使实体图与物理图保持一致。然后您可以保存最后的实体或关系实体本身。
如果您将您的对象视为图表,那么这一切都会一目了然。