Spring 启动 - 独立的 Neo4j
Spring boot - Stand alone Neo4j
如何通过 Spring 引导连接到外部 neo4j 服务器。我在 https://spring.io/guides/gs/accessing-data-neo4j/ 提到了这个例子。更改了以下
@Bean
GraphDatabaseService graphDatabaseService() {
SpringRestGraphDatabase x = null;
return new SpringRestGraphDatabase("http://localhost:7474/db/data/");
}
但它不起作用。此外,当我安装 neo4j 时,它似乎受到用户名密码的保护。从 spring boot
连接到 neo4j 的正确方法是什么
问题是没有传递凭据。
@Bean
GraphDatabaseService graphDatabaseService() {
SpringRestGraphDatabase x = null;
return new SpringRestGraphDatabase("http://localhost:7474/db/data/",**"neo4j","nithin"**);
}
这成功了! .谢谢
如何通过 Spring 引导连接到外部 neo4j 服务器。我在 https://spring.io/guides/gs/accessing-data-neo4j/ 提到了这个例子。更改了以下
@Bean
GraphDatabaseService graphDatabaseService() {
SpringRestGraphDatabase x = null;
return new SpringRestGraphDatabase("http://localhost:7474/db/data/");
}
但它不起作用。此外,当我安装 neo4j 时,它似乎受到用户名密码的保护。从 spring boot
连接到 neo4j 的正确方法是什么问题是没有传递凭据。
@Bean
GraphDatabaseService graphDatabaseService() {
SpringRestGraphDatabase x = null;
return new SpringRestGraphDatabase("http://localhost:7474/db/data/",**"neo4j","nithin"**);
}
这成功了! .谢谢