zoukankan      html  css  js  c++  java
  • JDBC 链接mysql 8 的问题

    转载:jdbc连接mysql 8 的一些坑

    1、驱动包要升级为 mysql-connector-java-8.0.11.jar

     

    2、JDBC driver 由“com.mysql.jdbc.Driver”改为“com.mysql.cj.jdbc.Driver”

    3、url中加上“userSSL=false”。否则会出现以下错误:

    “Establishing SSL connection withoutserver's identity verification is not recommended. According to MySQL 5.5.45+,5.6.26+ and 5.7.6+ requirements SSL connection must be established by defaultif explicit option isn't set. For compliance with existing applications notusing SSL the verifyServerCertificate property is set to 'false'. You needeither to explicitly disable SSL by setting useSSL=false, or set useSSL=trueand provide truststore for server certificate verification.”

    4、url中加上“serverTimezone=GMT%2B8”(GMT%2B8代表东八区)

           或者直接修改数据库的默认时区:

    1.  
      show variables like '%time_zone%';
    2.  
      set global time_zone='+8:00';

    最后附示例URL:

    jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8&userSSL=false&serverTimezone=GMT%2B8

  • 相关阅读:
    Nacos配置管理-什么是配置中心
    MYSQL count
    贷款
    短视频推荐图书
    前端
    err
    err
    Mysql8安装教程
    err
    err
  • 原文地址:https://www.cnblogs.com/lightandtruth/p/9475313.html
Copyright © 2011-2022 走看看