我试图在DataBase中使用Neo4j创建一个java springboot项目,当我尝试在postman中执行和测试我的Api时,它向我显示了这个错误:
Connection to the database terminated. Please ensure that your database is listening on the correct host and port and that you have compatible encryption settings both on Neo4j server and driver. Note that the default encryption setting has changed in Neo4j 4.0.
我已经通过在 application.properties:
中添加此行来验证加密所需的内容spring.data.neo4j.uri=bolt://localhost:7687
spring.data.neo4j.username=Example1
spring.data.neo4j.password=secret
spring.data.neo4j.database =stud
org.neo4j.driver.config.encrypted=true
我怎样才能找到解决我的问题的方法 谢谢
我有同样的问题,我通过以下步骤解决了它。 (可能还有另一种方法,但这对我有用)。
完成这些步骤后,我就可以连接到 Neo4j 数据库了。
谢谢,
阿图尔