0

我有一个简单的关系测试,我试图运行它以使用 Rest API(java-rest-binding)https://github.com/neo4j/java-rest-binding创建一个唯一节点,但不幸的是我被困在了一些东西上,以下是详细信息:(非唯一节点和关系工作得非常好,它没有,很可能我在做一些幼稚的事情(请原谅我缺乏对neo4j的知识)。

final UserModel userModel = new UserModel();
        final HashMap<String, Object> uModelAttributes = new HashMap<String, Object>(0);
        uModelAttributes.put("name", "AnirudhVyas");
        userModel.setAttributes(uModelAttributes);
        final HashSet<Action> buyHistory = new HashSet<Action>();
        final Action buyAction = new Action();
        final ProductModel productModel = new ProductModel();
        final HashMap<String, Object> attributes = new HashMap<String, Object>(0);
        attributes.put("name", "mercedes benz ");
        attributes.put("make", "mercedes benz");
        attributes.put("model", "sls 550");
        attributes.put("year", "2014");
        productModel.setAttributes(attributes);
        buyAction.setProduct(productModel);
        buyHistory.add(buyAction);
        userModel.setBuyHistory(buyHistory);
        System.out.println("Before");
        new UserModelDAO().createCompleteTree(userModel);
        System.out.println("Completed >>>

如果我在 dao 上使用它:

final RestNode root = api.getOrCreateNode(api.index().forNodes("users", MapUtil.stringMap(IndexManager.PROVIDER, "lucene", "type", "fulltext")), "name", m
                    .getAttributes().get("name"), m.getAttributes());

api.getOrCreateNode(api.index().forNodes("products", MapUtil.stringMap(IndexManager.PROVIDER, "lucene", "type", "fulltext")), "name", buyAction.getProduct().getAttributes().get("name"), buyAction.getProduct().getAttributes()), RelationshipTypes.BOUGHT);

这基本上失败了:

   java.lang.RuntimeException: Error retrieving or creating node for key name and value AnirudhVyas with index users
        at org.neo4j.rest.graphdb.ExecutingRestAPI.getOrCreateNode(ExecutingRestAPI.java:448)
        at org.neo4j.rest.graphdb.RestAPIFacade.getOrCreateNode(RestAPIFacade.java:223)
        at xxxx.xxxx.xxxx.graph.UserModelCreateTasteKeyNeo4JBatchCallback.recordBatch(UserModelCreateTasteKeyNeo4JBatchCallback.java:61)
4

2 回答 2

0

我通过不使用批处理休息回调解决了这个问题 - 当我简单地使用 - getOrCreateXXX() for RestAPI 时,它就像一个魅力 - 需要进一步调查为什么在 BatchCallback#recordBatch() 上的 getOrCreate 会表现不同。

于 2013-05-22T19:42:51.583 回答
0

有几种方法可以做到这一点,其中一种是使用 Cypher:

MATCH a
WHERE a.name! = 'nameTofound'
CREATE UNIQUE a-[:Relationship]-c:LABEL
RETURN c

在查询引擎中使用它。它就像一个魅力,请查看以下链接了解更多详细信息: http: //docs.neo4j.org/chunked/milestone/query-create-unique.html

Java代码在这里:

protected static RestNode createOrGetExistingNode(String key, String valueFor, String Rel, String label){
    RestNode node = null;
    final QueryResult<Map<String, Object>> result = GraphRestService.queryEngine.query(String.format("MATCH node WHERE node.%s! ='%s' " +
            "CREATE UNIQUE node-[:%s]-c:%s RETURN c" , key, valueFor, Rel, label), MapUtil.map("reference", 0));
    for (Map<String, Object> column : result) {
        node = (RestNode) column.get("c");
    }
    return node;
}
于 2013-07-09T09:07:41.830 回答