我一直在尝试构建示例 GetAll neo4j 服务器扩展,但不幸的是我无法使其工作。我安装了 Windows 版本的 neo4j 并将其作为服务器运行。我还安装了 Python neo4jrestclient,我正在通过 Python 脚本访问 neo4j。以下工作正常: from neo4jrestclient.client import GraphDatabase gdb = GraphDatabase("http://localhost:7474/db/data/") print gdb.extensions
它给了我“CypherPlugin”和“GremlinPlugin”。我想构建示例 GetAll 服务器扩展,即 Java。我正在使用 Eclipse。我可以在文件夹“c:\neo4j_installation_root\neo4j-community-1.7\plugins\GetAll.jar”中创建 jar 文件,但是当我重新启动 neo4j 服务器并运行 neo4jrestclient 时,它不显示 GetAll 服务器扩展。我搜索了很多,但徒劳无功。我在 C++ 和 Python 方面有很多经验,但对 Java 很陌生。我将非常感谢能够构建 neo4j 服务器扩展的一些帮助。这对我对 neo4j 的评估至关重要。