zoukankan      html  css  js  c++  java
  • MySQL版本的相关问题:com.mysql.cj.jdbc.Driver和com.mysql.jdbc.Driver

    MySQL版本的相关问题:com.mysql.cj.jdbc.Driver和com.mysql.jdbc.Driver    
    1. 在使用mysql时,控制台日志报错如下:
    Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
    
    
    报错原因:
    MySQL5用的驱动url是com.mysql.jdbc.Driver,MySQL6以后用的是com.mysql.cj.jdbc.Driver。版本不匹配便会报驱动类已过时的错误。
    解决方法:
    更改配置文件中的驱动类名字就可以消除驱动类过时的警告了。


    2. JDBC连接MySQL6 (com.mysql.cj.jdbc.Driver), 需要指定时区serverTimezone,否则会报如下错误:
    org.mybatis.spring.MyBatisSystemException:
                nested exception is org.apache.ibatis.exceptions.PersistenceException:
                    ### Error querying database.
                Cause: org.springframework.jdbc.CannotGetJdbcConnectionException:
                    Could not get JDBC Connection; nested exception is org.apache.commons.dbcp.SQLNestedException:
                Cannot create PoolableConnectionFactory (The server time zone value '�й���׼ʱ��' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.)

    3.还有一个警告:

    WARN: Establishing SSL connection without server'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 default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
    /**
    不推荐不使用服务器身份验证来建立SSL连接。 
    如果未明确设置,MySQL 5.5.45+, 5.6.26+ and 5.7.6+版本默认要求建立SSL连接。 
    为了符合当前不使用SSL连接的应用程序,verifyServerCertificate属性设置为’false’。 
    如果你不需要使用SSL连接,你需要通过设置useSSL=false来显式禁用SSL连接。 
    如果你需要用SSL连接,就要为服务器证书验证提供信任库,并设置useSSL=true。
    **/
                 
    名词解释:
    SSL – Secure Sockets Layer(安全套接层)
    所以,使用mysql6的连接字符串建议使用如下:
    jdbc.url=jdbc:mysql://localhost:3306/your_database?characterEncoding=UTF-8&serverTimezone=UTC&useSSL=false
    //更详细的连接字符创参考:
    
    mysql.url=jdbc:mysql://127.0.0.1:3306/dbname?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false&verifyServerCertificate=false&autoReconnct=true&autoReconnectForPools=true&allowMultiQueries=true

             以上配置的写法是写在单独的配置文件properties中,使用xml文件配置的写法略有不同,需要将每一个配置用分号; 隔开,需要注意的是分号;在xml中需要转义。XML文件中的写法:

    <property name="url" value="jdbc:mysql://localhost/lujx?serverTimezone=UTC&amp;useSSL=false" />
    
    
  • 相关阅读:
    单一职责原则
    23种设计模式
    微信小程序页面跳转
    【论文阅读】OrigamiNet:Weakly-Supervised, Segmentation-Free, One-Step, Full Page Text Recognition by learning to unfold
    【华为昇腾】DB_ResNet精度调优 Siammask性能调优 模型众筹项目复盘
    Ueditor 防止html过滤标签的操作
    海康摄像机rtsp地址格式官方最新版(2020)
    HLS协议解析
    解决帝国标题颜色颜色单引号问题
    帝国CMS动态页支持栏目导航标签,万能标签,循环子栏目标签
  • 原文地址:https://www.cnblogs.com/daemonFlY/p/9820541.html
Copyright © 2011-2022 走看看