我尝试使用spring-boot,joinfaces和嵌入式neo4j - 带有对象映射ogm的图形数据库来获得嵌入式tomcat服务器的工作系统。一切似乎都很好。我将我的来源提交到https://svn.riouxsvn.com/circlead-embedd/circlead-embedded/
问题是所有neo4j-ogm - 示例(请参阅http://www.hascode.com/2016/07/object-graph-mapping-by-example-with-neo4j-ogm-and-java/)表明@Relationship与ogm一起使用。但是当我用
进行测试时@NodeEntity
public abstract class GenericNode<T> implements INode<T> {
@GraphId
public Long id;
@SuppressWarnings("unused")
private void setId(Long id) {
this.id = id;
}
public String label;
@Relationship(type = "PARENT_OF", direction = Relationship.INCOMING)
public Set<T> parents = new HashSet<T>();
@Relationship(type = "CHILD_OF", direction = Relationship.OUTGOING)
public Set<T> children = new HashSet<T>();
...
然后所有关系似乎都没有写在数据库中,因为行
Role rp = new Role("Role 1");
Role rc = new Role("Role 2");
rc.addParent(rp);
session.save(rc);
Iterable<Role> roles = session.query(Role.class, "MATCH (x) RETURN x;", Collections.<String, Object>emptyMap());
for (Role role : roles) {
System.out.println(role);
}
在控制台中显示缺少数据库的关系。似乎只有在活动会话关系中才能找到。服务器重启后,所有关系都丢失了。
Role [id=52, label=Role 2, parents=[]]
Role [id=53, label=Role 1, parents=[]]
Role [id=54, label=Role 1, parents=[]]
Role [id=55, label=Role 2, parents=[54]]
我不知道这种错误会发生什么。我使用neo4j-ogm 2.1.2和neo4j 3.1.3。
有什么想法吗?
答案 0 :(得分:0)
您所看到的结果是预期的 - neo4j-ogm会映射您在cypher查询中返回的内容(以及您在会话中已有的内容)。如果您还需要相关实体,则返回关系和其他节点:
MATCH (x)-[r]-(x2) RETURN x,r,x2
或者如果你想要,例如只有父母田地水合:
MATCH (x)<-[r:PARENT_OF]-(p) RETURN x,r,p
这将仅为第一级保湿。为了保持所有级别(父级的父级),您需要使用可变长度路径并返回其节点和关系(返回路径不能直接工作):
MATCH p=(x)-[:PARENT_OF*..]-() RETURN nodes(p),rels(p)