在這個頁面中的Java部分:https://neo4j.com/blog/cypher-load-json-from-url/爲什麼在java中的這個示例代碼不工作?
線
db.execute(query, singletonMap("json",json));
給出了一個錯誤,那就是The method execute(String, Map<String,Map>) is undefined for the type GraphDatabaseService
。
在類GraphDatabaseService中沒有名爲「execute」的方法,我無法找到有關此類的文檔。有誰知道發生了什麼?
neo4j是否改變了它的庫,並沒有相應地調整代碼,或者我錯過了一些需要下載的庫(我已經下載了neo4j-kernel-1.8.1.jar和neo4j-java-driver-1.1.0.sources .jar並將它們添加到路徑中)?