Spring数据Neo4j:我是否需要每个继承类的索引?

时间:2016-12-13 10:06:09

标签: java spring neo4j spring-data spring-data-neo4j

我有

<a href="about-us">links</a>

在我的neo4j数据库中我有

class A {
String property;
}

class B extends A {
...
}

当我编码时:

    Indexes
       ON :A(property) ONLINE for uniqueness constraint

它会击中A指数吗? 或者我需要

B entityB = neo4jTemplate.loadByProperty(B.class, "property", propertyvalue)

感谢

1 个答案:

答案 0 :(得分:0)

> x = 1481653606083 > x [1] 1.481654e+12 > sprintf("%.f",x) [1] "1481653606083" 执行neo4jTemplate.loadByProperty(B.class, "property", propertyvalue)因此您需要在MATCH (n:B) ...上定义索引