hibernate连接数据库时报Access denied for user 'root'@'localhost' (using password: YES)
时间: 2023-08-09 13:09:11 浏览: 114
回答: 当你在使用Hibernate连接数据库时报错"Access denied for user 'root'@'localhost' (using password: YES)",这通常是因为数据库连接配置中的用户名或密码不正确。\[1\]错误信息中的'root'@'localhost'表示使用用户名'root'在本地主机上连接数据库,而(using password: YES)表示使用了密码进行连接。如果你的数据库用户名或密码不正确,就会导致连接被拒绝。另外,错误信息中的引用\[2\]提到了一个可能的原因是在Spring Boot中配置的entityManagerFactory出现了问题,导致连接失败。此外,引用\[3\]中提到,如果你的电脑账号不是默认的administrator,那么在数据库连接配置中需要使用你自己设置的账号。为了避免与Windows基本配置冲突,数据库连接名常常写得较长,以唯一识别用户名而不会与Windows冲突。因此,你需要检查你的数据库连接配置,确保用户名和密码正确,并且与数据库中的用户匹配。
#### 引用[.reference_title]
- *1* [Access denied for user ‘root‘@‘localhost‘ (using password: YES)Cannot open connection](https://blog.csdn.net/weixin_44973078/article/details/116240137)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [IDEA Access denied for user ''@'localhost' (using password: NO)解决方法](https://blog.csdn.net/qq_36324464/article/details/79534605)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [Access denied for user 'Administrator'@'localhost' (using password: YES)](https://blog.csdn.net/weixin_39809036/article/details/82108392)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文