问题:java.sql.SQLException: The server time zone value ‘?й???’ is unrecognized or represents more than one time zone.
问题描述:
java.sql.SQLException:服务器时区值’?й???’ 无法识别或代表多个时区。 如果要使用时区支持,则必须配置服务器或JDBC驱动程序(通过serverTimezone配置属性)以使用更具体的时区值。
解决办法:
url = "jdbc:mysql://localhost:3306/user?useUnicode=true&characterEncoding=utf-8&useSSL=false"
后面加参数serverTimezone=GMT,如下:
url = "jdbc:mysql://localhost:3306/user?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT"