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

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

    If seeing this message in Hive with new MySQL connector 8.x (MySQL metastore)

    open hive-site.xml and change:

       
          javax.jdo.option.ConnectionDriverName
          com.mysql.jdbc.Driver
          MySQL JDBC driver class
       
    

    to

       
          javax.jdo.option.ConnectionDriverName
          com.mysql.cj.jdbc.Driver
          MySQL JDBC driver class
       
    

提交回复
热议问题