mysql-connector-java:6.0.6连接jdbc报错

本文探讨了在使用mysql-connector包时遇到的过时驱动警告及SSL连接问题,提供了详细的解决方案,包括更新驱动类名、增加时区信息、正确处理XML实体以及明确设置SSL连接选项。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

 Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.

主要是以下两个原因:

  • mysql-connector包使用了新的驱动

  • 连接的URL中需要增加时区信息

解决方法为:

1️⃣jdbc.driver的属性值从com.mysql.jdbc.Driver换为com.mysql.cj.jdbc.Driver

2️⃣连接的URL中需要增加时区信息  serverTimezone=GMT

         增加serverTimezone属性并设置时区值,测试UTC(世界标准时间)和GMT(格林威治 时间)都可以。

3️⃣如果是在XML文档中,需将&换成  & ,(注意;不能少)否则还是会报错

              如果你不需要使用SSL连接,你需要通过在URL后面设置一个属性useSSL=false来显式禁用SSL连接。 
              如果你需要用SSL连接,就要为服务器证书验证提供信任库,并设置useSSL=true

最终的URL如下所示:

jdbc:mysql://localhost:3306/hive?serverTimezone=GMT&useSSL=false

当不是xml的时候URL如下所示:将&换成 &  

jdbc:mysql://localhost:3306/hive?serverTimezone=GMT&auseSSL=false

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

zhangvalue

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值