我正在尝试用Neo4J模拟社交网络。这要求用户可以与另一个用户建立多种关系。当我试图坚持这些关系时,只存储一个。例如,这是我做的测试单元:
@Test
public void testFindConnections() {
Id id1 = new Id();
id1.setId("first-node");
Id id2 = new Id();
id2.setId("second-node");
idService.save(id2);
id1.connectedTo(id2, "first-rel");
id1.connectedTo(id2, "second-rel");
idService.save(id1);
for (Id im : idService.findAll()) {
System.out.println("-" + im.getId());
if (im.getConnections().size() > 0) {
for (ConnectionType ite : im.getConnections()) {
System.out
.println("--" + ite.getId() + " " + ite.getType());
}
}
}
}
这应输出:
-first-node
--0 first-rel
--1 second-rel
-second-node
--0 first-rel
--1 second-rel
然而,它输出:
-first-node
--0 first-rel
-second-node
--0 first-rel
这是我的节点实体:
@NodeEntity
public class Id {
@GraphId
Long nodeId;
@Indexed(unique = false)
String id;
@Fetch
@RelatedToVia(direction=Direction.BOTH)
Collection<ConnectionType> connections = new HashSet<ConnectionType>();
}
我的关系实体:
@RelationshipEntity(type = "CONNECTED_TO")
public class ConnectionType {
@GraphId Long id;
@StartNode Id fromUser;
@EndNode Id toUser;
String type;
}
问题是什么?有没有其他方法来模拟节点之间的几个关系?
答案 0 :(得分:4)
这不是Neo4j的缺点,它是对Spring Data Neo4j的限制。
通常,如果您有不同类型的关系,那么实际选择不同的关系类型也是有意义的,而不是为此使用关系属性。
CONNECTED_TO
也非常通用。
Id
也是一个非常通用的类,不应该是User
或类似的东西吗?
FRIEND
COLLEAGUE
等会更有意义。
也就是说,如果你想留在模特身上,你可以使用
template.createRelationshipBetween(entity1,entity2,type,properties,true)
true
代表允许重复。
或者对两种类型的关系使用两种不同的目标类型并使用
@RelatedTo(enforceTargetType=true)