spring boot 设置时区

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 utili

:采用+8:00格式,没有指定MySQL驱动版本的情况下它自动依赖的驱动高版本的mysql,这是由于数据库和系统时区差异所造成的,mysql默认的是美国的时区,而我们中国大陆要比他们迟8小时,在jdbc连接的url后面加上serverTimezone=GMT即可解决问题,如果需要使用gmt+8时区,需要写成GMT%2B8,否则会被解析为空。再一个解决办法就是使用低版本的MySQL jdbc驱动不会存在时区的问题。 

解决方法一:直接设置url

数据库连接url加上:

&serverTimezone=GMT

解决方法二:统一时区

数据库连接url加上:

&useSSL=false&serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8

然后在application启动类设置时区:

@PostConstruct
void started() {
    TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
}

解决方法三:设置数据库时区

spring boot 设置时区_第1张图片

直接在网上就能搜到

 

 

 

你可能感兴趣的:(spring,boot,坑)