• IDEA中配置连接MySql报错Server returns invalid timezone


    报错如下

     解决  url 加上 ?serverTimezone=GMT%2B8

    分析

    时区问题,MySQL驱动默认UTC时区。

    也可以修改Mysq

    # 设置全局时区 mysql> set global time_zone = '+8:00';
    Query OK, 0 rows affected (0.00 sec) 
    # 设置时区为东八区 mysql> set time_zone = '+8:00'; 
    Query OK, 0 rows affected (0.00 sec) 
    # 刷新权限使设置立即生效 mysql> flush privileges; 
    Query OK, 0 rows affected (0.00 sec)
    mysql> show variables like '%time_zone%';
     +------------------+--------+
     | Variable_name | Value |
     +------------------+--------+
     | system_time_zone | EST |
     | time_zone | +08:00 | 
     +------------------+--------+
     2 rows in set (0.00 sec)

    备注:

    GMT(Greenwich Mean Time):格林威治标准时间
    UTC:世界标准时间
    CST(China Standard Time):中国标准时间

    GMT + 8 = UTC + 8 = CST

    古人学问无遗力,少壮工夫老始成。 纸上得来终觉浅,绝知此事要躬行。
  • 相关阅读:
    border-radius
    border-style
    border-width
    border
    max-width
    min-width
    clip 语法
    left
    z-index
    position
  • 原文地址:https://www.cnblogs.com/wf-zhang/p/13549903.html
Copyright © 2020-2023  润新知