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.
时间: 2023-06-16 19:03:56 浏览: 402
这个警告信息是由于使用了过时的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. 检查网络连接是否正常,例如是否存在防火墙等问题
如果以上步骤都已经检查过了,还是出现相同的错误提示,可以尝试重新启动数据库服务或者尝试重新连接几次。
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
这是一个警告信息,意思是使用过时的 MySQL 驱动程序类“com.mysql.jdbc.driver”,新的驱动程序类是“com.mysql.cj.jdbc.driver”。这个警告信息说明驱动程序通过 SPI 自动注册,也可以手动加载驱动程序类。
阅读全文