1

我正在尝试使用 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;
}

问题可能是什么?有没有其他方法可以对节点之间的多个关系进行建模?

4

1 回答 1

4

这不是 Neo4j 的缺点,而是 Spring Data Neo4j 的限制。

通常,如果您有不同类型的关系,那么实际上选择不同的关系类型也是有意义的,而不是为此使用关系属性。

CONNECTED_TO也很通用。

Id也是一个非常通用的类,不应该是User或类似的吗?

FRIEND COLLEAGUE等会更有意义。


也就是说,如果你想继续使用你的模型,你可以使用

template.createRelationshipBetween(entity1,entity2,type,properties,true)

true代表允许重复。

或者,对 2 种关系类型使用两种不同的目标类型并使用

@RelatedTo(enforceTargetType=true)

于 2013-02-21T20:38:53.773 回答