AI智能
改变未来

使用JDBC连接数据库出现 The server time zone value ‘�й���׼ʱ��‘ is unrecognized or represents more than one解决方案

jdbc.properties 文件中的 url 后面加上 ?serverTimezone=UTC
加入之前的jdbc.properties文件:

user=root
password=12345678
url=jdbc:mysql://localhost:3306/test
driverClass=com.mysql.cj.jdbc.Driver

加入之后:

user=root
password=12345678
url=jdbc:mysql://localhost:3306/test?serverTimezone=UTC
driverClass=com.mysql.cj.jdbc.Driver

加入之后就可以解决问题,别问我,我也不懂,加上以后确实不会报错了

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 使用JDBC连接数据库出现 The server time zone value ‘�й���׼ʱ��‘ is unrecognized or represents more than one解决方案