异常: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:
#配置数据库链接信息
datasource:
url: jdbc:mysql://localhost:3306/999
driver-class-name: com.mysql.jdbc.Driver
username: root
password: 4215
解决:按照最新官方提示支持将
driver-class-name: com.mysql.jdbc.Driver
更换为: com.mysql.cj.jdbc.Driver