springboot连接neo4j报错的解决方案
作者:可乐还是甜的好
这篇文章主要介绍了springboot连接neo4j报错的解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
springboot连接neo4j报错
今天集成springboot和neo4j的时候
报错如下
org.springframework.transaction.CannotCreateTransactionException: Could not open Neo4j Session for transaction; nested exception is org.neo4j.driver.exceptions.AuthenticationException: The client is unauthorized due to authentication failure.
这是因为权限问题导致
解决方法
找到你安装neo4j的路径下的conf文件夹
找到 neo4j.conf 配置文件
查找里边的 #dbms.security.auth_enabled=false
将前面的注释#去掉,重启springboot即可
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。