如何通过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时,似乎用用户名密码保护。什么是从春季启动连接到neo4j的正确方法
答案 0 :(得分:2)
问题是证书没有通过。
@Bean
GraphDatabaseService graphDatabaseService() {
SpringRestGraphDatabase x = null;
return new SpringRestGraphDatabase("http://localhost:7474/db/data/",**"neo4j","nithin"**);
}
这很有效! 。谢谢