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

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

    According Changes in the Connector/J API "The name of the class that implements java.sql.Driver in MySQL Connector/J has changed from com.mysql.jdbc.Driver to com.mysql.cj.jdbc.Driver. The old class name has been deprecated."

    This means that you just need to change the name of the driver:

    Class.forName("com.mysql.jdbc.Driver");
    

    to

    Class.forName("com.mysql.cj.jdbc.Driver");
    

提交回复
热议问题