我已經有一些數據已經被使用本地API注入neo4j實例。由Spring數據圖支持的應用程序使用相同的實例。存儲庫無法找到數據。我假設這是由於索引和/或缺少屬性造成的問題。沒有被Spring Data Repos挑選的Neo4j native api數據
當數據在下面的屬性被泵設置:
node.setProperty("__type__", "com.x.x.Class");
索引被設置如下:
Index<Node> typeIndex = indexManager.forNodes("__types__");
typeIndex.add(node, "className", "com.x.x.Class");
任何線索/幫助表示讚賞。
我也認爲應記錄SDN特定的屬性/索引。 – imamc 2012-07-21 20:01:18
它們記錄在手冊中:http://static.springsource.org/spring-data/data-graph/snapshot-site/reference/html/#reference:programming-model:typerepresentationstrategy – 2012-08-08 06:29:19