我在用spring boot开发商城项目的时候,发现了这个问题:
The server time zone value '???ú±ê×??±??' is unrecognized or represents more than one time zone.
其中是有乱码的。
解决的方法是,在连接mysql的url后面加上了一句话。
原来的url:jdbc:mysql://localhost:3306/shiwu?useUnicode=true&characterEncoding=UTF-8
修改后的是:mysql://localhost:3306/shiwu?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
修改好,至少这个问题解决了。
用文章记录下,万一其它同学遇到类似问题,也可以用这个办法解决。