SQLException 时区区值无法识别

毕设错误2

下面这个真的是让我一头雾水,翻译了之后才理解,原来是在新版的com.mysql.jdbc.Driver这个已经被替换了,现在开始使用com.mysql.cj.jdbc.Driver,因此就要给MySQL服务器设置时区。
所以才有了接下里的错误:

1
2
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.

那现在就说最终的解决方法:

1
jdbc:mysql://localhost:3306/xxxx?serverTimezone=GMT%2B8

在URL的后边加上设置的时区就可以了。