Neo4j的DB路径

时间:2016-03-28 22:16:33

标签: java maven neo4j

我创建了一个Maven项目,我在其中创建了此链接中定义的类:

https://github.com/neo4j/neo4j/blob/1.9.5/community/embedded-examples/src/main/java/org/neo4j/examples/EmbeddedNeo4j.java

但我不知道如何替换变量DB_PATH的值

 public class EmbeddedNeo4j

  {

   private static final String DB_PATH = "target/neo4j-hello-db";

   String greeting;

   // START SNIPPET: vars
   GraphDatabaseService graphDb;
   Node firstNode;
   Node secondNode;
   Relationship relationship;
// END SNIPPET: vars

// other instructions... and methods
 }

我已经安装了Neo4j的.exe版本,我可以在浏览器中看到数据库:http://localhost:7474/browser/

我的数据库位置是:

C:\Users\harun\Documents\Neo4j\default.graphdb

在我的代码上我写了:

private String DB_PATH = "Users\\harun\\Documents\\Neo4j\\default.graphdb";

安装文件夹是:

C:\Program Files\Neo4j CE 2.3.3

仍然无法奏效。有什么想法吗?

0 个答案:

没有答案