文章目录
前言
1、问题原图:
2、解决办法
前言
今天在使用JDBC连接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.
1、问题原图:
问题来了,这一大堆英语,是什么意思呢?我给大家翻译一下:
加载类'com.mysql.jdbc.Driver' 这是弃用的类 新的驱动类是' com.mysql.cj.jdbc.Driver ' 驱动程序是通过SPI自动注册的,手动加载驱动类通常是不必要的
2、解决办法
只需要将com.mysql.jdbc.Driver驱动类改为com.mysql.cj.jdbc.Driver就可以解决问题了,是不是很简单呢。