The server time zone value '?й???????' is unrecognized解决方法

2022/4/23 23:16:56

本文主要是介绍The server time zone value '?й???????' is unrecognized解决方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

页面报错:

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.
Sat Apr 23 18:37:33 CST 2022
There was an unexpected error (type=Internal Server Error, status=500).

 

启动器报错:

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.

 

解决方法:

在配置文件 application.propertice 或 application.yml 中,添加时区 “serverTimezone=UTC”。

spring:
  datasource:
    url: jdbc:mysql://localhost:3306/qfedu?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC&useSSL=true

 

然后清除缓存:

 

 

 

 



这篇关于The server time zone value '?й???????' is unrecognized解决方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程