Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: 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' configurati
时间: 2024-03-05 17:53:14 浏览: 88
Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: ….. this is incompatible with sq
这个错误通常是由于MySQL服务器和JDBC驱动程序之间的时区设置不匹配导致的。你可以尝试在连接URL中指定时区,例如:
```
jdbc:mysql://localhost/mydatabase?serverTimezone=UTC
```
将时区设置为MySQL服务器使用的时区。如果你不确定MySQL服务器使用的时区是什么,可以使用以下查询:
```
SELECT @@global.time_zone;
```
这将返回MySQL服务器的全局时区设置。确保将JDBC驱动程序的版本更新为最新版本,以确保其能够正确处理时区设置。
阅读全文