我正在尝试使用 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;
}
问题可能是什么?有没有其他方法可以对节点之间的多个关系进行建模?