3

此功能曾一度有效,但似乎在最新的 SDN4 快照 (7-16-15) 中出现故障

我有两个节点类,一个代表中间非叶节点,一个代表一阶叶顶点节点。这两个类实现了一个公共接口。

public interface Node {
    ...
}

@NodeEntity
public class SimpleNode implements Node {
    ...
}

@NodeEntity
public class SimpleLeafNode implements Node {
    ...
}

前者可以与其他中间节点或叶节点相关,我通过将SimpleNode类映射到NodeINTERFACE 来模拟这种关系:

@RelationshipEntity
public class SimpleRelationship {

    @StartNode
    private SimpleNode parent;

    @EndNode
    private Node child;
}

当我尝试启动我的 Spring Boot 应用程序时,我收到一个 SDN 映射异常:

Caused by:
    10:51:04.173 [DEBUG] org.neo4j.ogm.metadata.MappingException: No identity field found for class: com.sdn4demo.entity.Node
    10:51:04.174 [DEBUG]    at org.neo4j.ogm.metadata.info.ClassInfo.identityField(ClassInfo.java:291)
    10:51:04.174 [DEBUG]    at org.springframework.data.neo4j.mapping.Neo4jPersistentProperty.<init>(Neo4jPersistentProperty.java:76)
    10:51:04.174 [DEBUG]    at org.springframework.data.neo4j.mapping.Neo4jMappingContext.createPersistentProperty(Neo4jMappingContext.java:100)

同样,这是在 7-16-15 快照之前工作的,所以我的问题是 - 这是不支持的功能吗?这是一个错误吗?

一个人为的例子存在于: https ://github.com/simon-lam/sdn-4-demo

通过做可复制./gradlew clean test --debug

4

1 回答 1

3

这是一个错误。我们目前正在整理有关 SD-commons 和 Spring DATA REST 集成的内容,这是使用最前沿的东西的后果之一。

使用 RC1 可能是目前最好的选择。密切关注这个 JIRA 问题,看看它何时完成: https ://jira.spring.io/browse/DATAGRAPH-564

于 2015-07-16T16:16:09.170 回答