我遇到了Neo4j的问题。
首先,我有一些代码:
GraphDatabaseService graphDb = new EmbeddedGraphDatabase("neo4j-store");
// creating some nodes, relationships and commiting transactions
但是我找不到那些数据: http://localhost.pl:7474/webadmin ......为什么?
另一方面,另一方面。当我通过webadmin创建一些数据时,我无法从我的java应用程序中读取它。为什么呢?答案 0 :(得分:1)
Web控制台从安装/运行neo4j的位置拉出。因此,通常{neo4j.home}\data\graph.db
您的示例将在./neo4j-store
创建数据库。解决此问题的最简单方法是将org.neo4j.server.database.location
文件中的conf/neo4j-server.properties
设置为指向neo4j-store
所在的位置。对我来说,请查看here
答案 1 :(得分:1)
此外,您可以查看webadmin配置选项卡并查看数据库的位置,并确保您的嵌入式程序使用相同的。