Exception in thread "main" java.sql.SQLException: Access denied for user 'root'@'liugonli' (using password: YES)
时间: 2023-10-28 12:59:39 浏览: 129
Jmeter在操作MySQL数据库的时候出现Access denied for user ‘root’@’localhost’ (using password:YES)
这个异常"Exception in thread "main" java.sql.SQLException: Access denied for user 'root'@'liugonli' (using password: YES)"是指用户访问被拒绝的错误,原因是密码不正确。根据引用中的信息,你明确配置了正确的密码,但是问题出现在yml文件的配置上。你可以检查一下yml文件中的数据库配置是否正确。同时,根据引用中的描述,你使用了逆向工程-MyBatis Generator来生成代码,在代码中指定了一个mbg.xml文件作为配置文件。你发现问题是因为这个mbg.xml文件中的数据库密码没有正确修改。请确保你的mbg.xml文件中的数据库配置正确,并将密码修改为正确的密码,然后再次尝试运行代码。
阅读全文