Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdb
时间: 2023-10-12 18:20:08 浏览: 139
这是因为你正在使用过时的 MySQL 驱动程序。在新版本的 MySQL 中,推荐使用 `com.mysql.cj.jdbc.Driver` 驱动程序。你应该更新你的代码以使用新的驱动程序。
同时,如果你使用的是 MySQL 8.0 或更高版本,则需要使用新的 URL 格式。例如:
```
jdbc:mysql://localhost:3306/mydatabase?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
```
注意 `serverTimezone` 参数是必需的。如果你使用的是旧版本的 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. 检查网络连接是否正常,例如是否存在防火墙等问题
如果以上步骤都已经检查过了,还是出现相同的错误提示,可以尝试重新启动数据库服务或者尝试重新连接几次。
阅读全文