构建neo4j GetAll服务器插件的问题
我试图构建neo4j GetAll插件。项目仅包含here的一个示例类。构建neo4j GetAll服务器插件的问题
当我尝试运行卷曲http://localhost:7474/db/data/ext/GetAll/graphdb/get_all_nodes
,我得到错误信息:
没有这样的ServerPlugin例外
我使用的Neo4j社区-2.2.1(在Windows上)和jdk1.7.0_79。
我的项目包括:
GetAll.java
在org.neo4j.examples.server.plugins
包META-INF/services/org.neo4j.server.plugins.ServerPlugin
文件与此内容:从%NEO4J_HOME%\lib
所有罐子包括org.neo4j.examples.server.plugins.GetAll
- 在构建路径。
该jar文件是使用jar -cvf myext.jar *
构建的,并且该jar文件位于%NEO4J_HOME%\plugins
中。
我不知道为什么我不能使它正常工作。有什么建议么?
回答:
截图清楚地显示GetAll.class
位于目录bin/org/neo4j/examples/server/plugins
而不是org/neo4j/examples/server/plugins
(摆脱bin
)。
以上是 构建neo4j GetAll服务器插件的问题 的全部内容, 来源链接: utcz.com/qa/262569.html