Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdb

spring整合mybatis,尝试获取数据库用户表内容时遇到的红字错误,表示运行失败。

Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdb


解决办法:

首先去pom.xml配置文件查看mybatis版本是否老旧,发现同事的和我的版本一样运行也正常

所以再查看配置文件的驱动,因为原来用的版本太老了所以现在换成下图

Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdb

可以看到,把运行驱动的类换成了: 

com.mysql.cj.jdbc.Driver

然后运行正常