我创建了一个Maven项目,我在其中创建了此链接中定义的类:
但我不知道如何替换变量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
仍然无法奏效。有什么想法吗?