使用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

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

你可能感兴趣的:(报错解决方案,mysql,java)