问题描述:
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.
在学习使用SpringBoot2.x版本整合JDBC时配置驱动时直接选用了常用的,如下:
以前常用的驱动:
jdbc.driverClass = com.mysql.dbc.Driver
问题解决:
SpringBoot2.x 的驱动
jdbc.driverClass = com.mysql.cj.jdbc.Driver