JDBC报服务器时间错误

1 篇文章 0 订阅
1 篇文章 0 订阅

在进行数据库连接的过程中,出现了如下报错:

java.sql.SQLException: The server time zone value ‘???ú±ê×??±??’ is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.

报错代码如下:

String url = "jdbc:mysql://localhost:3306/world?useUnicode=true&characterEncoding=UTF8";
String user = "root";
String password = "root";
Connection con = DriverManager.getConnection(url, user, password);   //此行报错

使用的mysql版本为8.0.15.0,jdbc驱动版本为8.0;

在网上查找解决办法,得知这是由于数据库和系统时区差异所造成的,在JDBC连接的URL后面加上serverTimezone = GMT即可解决问题,如果需要使用GMT + 8时区,需要写成GMT%2B8(2B即"+“的十六进制ASCII码,”%2B"即“+”),否则会被解析为空。

修改后url如下:

String url = "jdbc:mysql://localhost:3306/world?useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT";
或
String url = "jdbc:mysql://localhost:3306/world?useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8";

GMT(Greenwich Mean Time):格林尼治时间为世界时,北京时间=GMT+8小时。
2B即"+“的十六进制ASCII码,”%2B"即“+”。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值