JDBC连接数据库 mysql serverTimezone useSSL 时差

 

2018年06月25日 11:24:01 love20yh 阅读数:303更多

个人分类: JavaWeb MyEclipse

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/love20yh/article/details/80799610

驱动包用的是mysql-connector-java-8.0.11.jar
新版的驱动类改成了com.mysql.cj.jdbc.Driver
新版驱动连接url也有所改动
I、指定时区

//北京时间东八区
serverTimezone=GMT%2B8 
  • 1
  • 2

这个时区要设置好,不然会出现时差,
如果你设置serverTimezone=UTC,连接不报错,
但是我们在用java代码插入到数据库时间的时候却出现了问题。
比如在java代码里面插入的时间为:2018-06-24 17:29:56
但是在数据库里面显示的时间却为:2018-06-24 09:29:56
有了8个小时的时差
UTC代表的是全球标准时间 ,但是我们使用的时间是北京时区也就是东八区,领先UTC八个小时。

//北京时间东八区
serverTimezone=GMT%2B8 
//或者使用上海时间
serverTimezone=Asia/Shanghai
  • 1
  • 2
  • 3
  • 4

为何没有asia/beijing时区?
II、指定是否用ssl连接,true值还报错了

useSSL=false
  • 1

完整代码:

Class.forName("com.mysql.cj.jdbc.Driver");

        String url="jdbc:mysql://localhost:3306/mydb3?serverTimezone=GMT%2B8&useSSL=false";
        String user="root";
        String password="123";

        Connection connection = DriverManager.getConnection(url, user, password);

        System.out.println(connection);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

1、导包mysql-connector-java-8.0.11.jar
2、加载驱动类

Class.forName("com.mysql.cj.jdbc.Driver");
  • 1

3、定义url,user,password

String url="jdbc:mysql://localhost:3306/mydb3?serverTimezone=GMT%2B8&useSSL=false";
        String user="root";
        String password="123";
  • 1
  • 2
  • 3

4、通过DriverManager.getConnection得到connection

Connection connection = DriverManager.getConnection(url, user, password);

你可能感兴趣的:(互联网——网络)