Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'

前端 未结 20 2435
予麋鹿
予麋鹿 2020-12-13 06:02

This is the Warning im getting in console, Im confused with this warning:

Loading class `com.mysql.jdbc.Driver\'. 
This is deprecated. The new driver class is         


        
20条回答
  •  天命终不由人
    2020-12-13 06:17

    This warning also appears if you are using the log4jdbc-spring-boot-starter library directly.

    However there is a config to choose the correct driver yourself. Put this in your application.properties:

    log4jdbc.drivers=com.mysql.cj.jdbc.Driver
    log4jdbc.auto.load.popular.drivers=false
    

    See documentation on Github

提交回复
热议问题