eclipse连接mysql数据库提示The server time zone value 'Öйú±ê×¼&

Posted 十么Shi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse连接mysql数据库提示The server time zone value 'Öйú±ê×¼&相关的知识,希望对你有一定的参考价值。

异常截图:

 

 

报错原因因为安装mysql的时候默认的是美国的时区,而我们中国所在地区时区与美国不一样所导致

解决方法在url后面添加  ?serverTimezone=UTC

修改后的代码

public static void main(String[] args){
        try {
            Class.forName("com.mysql.cj.jdbc.Driver");
            //数据库配置信息
            String url="jdbc:mysql://127.0.0.1:3306?serverTimezone=UTC";
            //账号
            String username="root";
            //密码
            String Password="123456";
            Connection con=DriverManager.getConnection(url,username,Password);
            System.out.println(con);
            //关闭数据库
            con.close();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }

以上是关于eclipse连接mysql数据库提示The server time zone value 'Öйú±ê×¼&的主要内容,如果未能解决你的问题,请参考以下文章

Database Navigator 使用默认MySQL连接提示:The server time zone value ‘Öйú±ê׼ʱ¼ä’ is unrecognized or repres

使用Dbeaver连接Mysql 8 提示 The server time zone value ‘****‘ is unrecognized

使用Dbeaver连接Mysql 8 提示 The server time zone value ‘****‘ is unrecognized

启动MySql提示:The server quit without updating PID file(…)失败

eclipse提示the user operation is waiting

Eclipse建立Django项目连接MySQL数据库报错,如图,请问该怎么解决?