菜单 学习猿地 - LMONKEY

VIP

开通学习猿地VIP

尊享10项VIP特权 持续新增

知识通关挑战

打卡带练!告别无效练习

接私单赚外块

VIP优先接,累计金额超百万

学习猿地私房课免费学

大厂实战课仅对VIP开放

你的一对一导师

每月可免费咨询大牛30次

领取更多软件工程师实用特权

入驻
37
0

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

原创
05/13 14:22
阅读数 21612

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

 

发表评论

0/200
37 点赞
0 评论
收藏