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

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

    working example:

    Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/your_db_name?autoReconnect=true&useSSL=false", "root", "root");
    

    call like this it will work.

提交回复
热议问题