gpt4 book ai didi

neo4j - SDN4 - 使用接口(interface)作为 RelationshipEntity 的结尾时抛出 MappingException

转载 作者:行者123 更新时间:2023-12-04 02:13:31 25 4
gpt4 key购买 nike

此功能曾一度有效,但在最新的 SDN4 快照 (7-16-15) 中似乎已损坏

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

public interface Node {
...
}

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

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

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

@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 重现

最佳答案

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

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

关于neo4j - SDN4 - 使用接口(interface)作为 RelationshipEntity 的结尾时抛出 MappingException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31459093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com