Eclipse中出现Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class is com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary. java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: NO)
时间: 2023-10-12 19:37:58 浏览: 282
这个错误信息表明你在 Eclipse 中尝试使用已过时的 MySQL 驱动程序,同时访问被拒绝,原因是没有提供正确的用户名和密码。你需要更新你的 MySQL 驱动程序为最新版,并在连接字符串中使用新的驱动程序类名 com.mysql.cj.jdbc.Driver。同时,你需要确保你在连接字符串中提供了正确的用户名和密码。如果你已经提供了正确的用户名和密码,但仍然无法连接到 MySQL 数据库,则可能需要检查你是否有足够的权限来访问该数据库。
相关问题
Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class is com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
这个警告信息是由于使用了过时的MySQL驱动程序而导致的。新的MySQL驱动程序是com.mysql.cj.jdbc.Driver。可以在代码中将旧的驱动程序更改为新的驱动程序来消除这个警告。
另外,根据警告信息,驱动程序已经通过SPI自动注册,所以手动加载驱动程序通常是不必要的。可以删除手动加载驱动程序的代码。
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary. com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
这个错误提示是由于使用了已经不推荐使用的Mysql的JDBC驱动程序 `com.mysql.jdbc.Driver`,而应该使用 `com.mysql.cj.jdbc.Driver`,同时也可能是因为与数据库的连接失败导致的。建议检查以下几点:
1. 确认已经使用了正确的Mysql的JDBC驱动程序 `com.mysql.cj.jdbc.Driver`
2. 确认数据库的地址、端口、用户名和密码是否正确
3. 确认数据库服务是否已经启动
4. 检查网络连接是否正常,例如是否存在防火墙等问题
如果以上步骤都已经检查过了,还是出现相同的错误提示,可以尝试重新启动数据库服务或者尝试重新连接几次。
阅读全文