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.jdbc.Driver'。此类已被弃用。新的驱动程序类是
com.mysql.cj.jdbc.Driver'。驱动程序通过SPI自动注册,通常不需要手动加载驱动程序类。
您收到的消息表明,您正在尝试加载的类com.mysql.jdbc.Driver'已被弃用。应该使用新的驱动程序类
com.mysql.cj.jdbc.Driver'。
过去,`com.mysql.jdbc.Driver'类用于为Java应用程序注册MySQL Connector/J驱动程序。然而,使用较新版本的MySQL Connector/J驱动程序时,驱动程序类通过服务提供程序接口(SPI)机制自动注册。这意味着通常不需要手动加载驱动程序类。
要解决此问题,您应该更新代码以使用新的驱动程序类com.mysql.cj.jdbc.Driver',而不是
com.mysql.jdbc.Driver'。另外,请确保在类路径中有最新版本的MySQL Connector/J驱动程序。
下面是一个示例,展示如何更新代码以使用新的驱动程序类:
// 旧代码
Class.forName("com.mysql.jdbc.Driver");
// 更新后的代码
// 新的驱动程序类不需要手动加载
// 删除加载驱动程序类的那一行
// 连接代码
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/database", "username", "password");