首页 > 数据库技术 > 详细

eclipse连接mysql提示Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'.

时间:2019-12-29 15:00:35      阅读:2004      评论:0      收藏:0      [点我收藏+]

提示内容:

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.Driver

 

5.x版本的驱动文件jar包对应的是:
Class.forName("com.mysql.jdbc.Driver");
语句来加载数据库驱动

8.0x版本的驱动文件jar包对应的是:
Class.forName("com.mysql.cj.jdbc.Driver");

eclipse连接mysql提示Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'.

原文:https://www.cnblogs.com/puhongjun/p/12114992.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!