异常错误: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.
出现这个的原因是因为 mysql返回的时间总是有问题,比实际时间要早8小时。
解决办法
在jdbc连接的url后面加上serverTimezone=GMT即可解决问题,如果需要使用gmt+8时区,需要写成GMT%2B8
url=jdbc:mysql://localhost:3306/db?serverTimezone=GMT
之后重启服务器就解决啦