mybatis plus 代码生成器的坑:Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class

mysql超过6的版本,驱动分成com.mysql.cj.jdbc.Driver
而6以下的驱动连接都是:com.mysql.jdbc.Driver
解决办法:(代码工具:idea)
idea 打开右侧导航栏的 maven project
mybatis plus 代码生成器的坑:Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class
将本地maven仓库中大于6版本的MySQL的jar包删掉
再把pom.xml 文件中的版本定义为低于6版本的版本号

mybatis plus 代码生成器的坑:Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class
再从新执行代码生成就欧克了