重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
在启动SpringBoot项目的时候报错: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时区配置不正确。
打开MYSQL的配置文件my.cnf
或者my.ini
,在[mysqld]
区块追加时区配置:
成都创新互联公司-专业网站定制、快速模板网站建设、高性价比福绵网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式福绵网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖福绵地区。费用合理售后完善,十余年实体公司更值得信赖。
[mysqld]
default-time_zone='+8:00'
然后重启MYSQL服务即可。