我通过以下步骤在 neo4j 中创建了插件:
1) 从 *.java 创建 *.class (用 Eclipse 编译)
2) 将 *.class 放入 .../org/neo4j/server/plugins/
3)创建*.jar(使用jar)
4) 将文本“org.neo4j.server.plugins.TransportRouter”放入 *.jar/META-INF/services/ 文件“org.neo4j.server.plugins.ServerPlugin”。
5) 将 *.jar 放入 .../neo4j/plugins/
6) 重启服务器
但是我的插件在“扩展”(“curl localhost:7474/db/data/”)中看不到。
为什么?
TIA,尤金妮。