springboot 启动出现Init DruidDataSource问题

springboot 启动出现Init DruidDataSource问题

背景

记录一下搭建环境的时候出现的问题,

springboot 启动出现Init DruidDataSource问题

Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

出现上面的红色字体:大概意思就是你弄的重复了,建议替换

解决

所以在配置中修改:

springboot 启动出现Init DruidDataSource问题

红体没有了。

springboot 启动出现Init DruidDataSource问题

其实这种问题也可以直接忽略,毕竟不是什么大的问题。

别问我怎么知道的,因为我一直这么用来着。