关于Spring boot 集成mysql出现Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver cla

前言

使用Spring boot集成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.警告,下面来查看具体出现的情况及解决方法。

情况

关于Spring boot 集成mysql出现Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver cla

这是因为连接mysql8版本的数据库需要新的驱动。

解决
关于Spring boot 集成mysql出现Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver cla
修改使用最新的驱动包com.mysql.cj.jdbc.Driver既可以解决这个问题