The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone.

1、问题描述

利用SpringBoot+mybatis开发的时候,访问后出现错误: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone.

mysql版本是8版本

配置如下:

 datasource:
    type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
    driver-class-name: com.mysql.cj.jdbc.Driver              # mysql驱动包
    url: jdbc:mysql://localhost:3306/cloudDB01
    username: root
    password: root

 

2、解决方案

更改数据源的url的配置:

url: jdbc:mysql://localhost:3306/cloudDB01?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC

 

posted @ 2020-12-28 22:22  怀梦想,致远方  阅读(70)  评论(0编辑  收藏  举报