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

前端 未结 20 2425
予麋鹿
予麋鹿 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:34

    I resolved this problem by change application.properties of

    spring.datasource.driver-class-name=com.mysql.jdbc.Driver
    

    to

    spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
    

    Hope it help

    0 讨论(0)
  • 2020-12-13 06:34

    In case of using a configuration based on a YML file, the following will be the property that needs to be adjusted inside the given file:

    *driverClassName: com.mysql.cj.jdbc.Driver*

    0 讨论(0)
提交回复
热议问题