久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      聊聊mysql-connector-java怎么連接驅(qū)動

      本篇文章給大家介紹關(guān)于mysql-connector-java連接驅(qū)動問題,希望對大家有所幫助!

      mysql-connector-java連接驅(qū)動問題

      mysql-connector-java 5中的驅(qū)動是com.mysql.jdbc.Driver ,

      mysql-connector-java 6中的驅(qū)動是com.mysql.cj.jdbc.Driver

      1、JDBC連接Mysql5 com.mysql.jdbc.Driver:

              driverClassName=com.mysql.jdbc.Driver         url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&useSSL=false

      2、JDBC連接Mysql6 com.mysql.cj.jdbc.Driver, 需要指定時區(qū)serverTimezone:

          driverClassName=com.mysql.cj.jdbc.Driver    url=jdbc:mysql://localhost:3306/test?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false

      在設(shè)定時區(qū)的時候,如果設(shè)定serverTimezone=UTC,會比中國時間早8個小時,如果在中國,

         可以選擇Asia/Shanghai或者Asia/Hongkong,例如:    driverClassName=com.mysql.cj.jdbc.Driver    url=jdbc:mysql://localhost:3306/test?serverTimezone=Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=false

      備注:
      I、如果mysql-connector-java用的6.0以上的,如下:

          <dependency>        <groupId>mysql</groupId>        <artifactId>mysql-connector-java</artifactId>        <version>6.0.6</version>     </dependency>

      但是你的driver用的還是com.mysql.jdbc.Driver,就會報錯:

       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.

      此時需要把com.mysql.jdbc.Driver 改為com.mysql.cj.jdbc.Driver
      II、還有一個警告:

       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.

      不推薦不使用服務(wù)器身份驗證來建立SSL連接。
      如果未明確設(shè)置,MySQL 5.5.45+, 5.6.26+ and 5.7.6+版本默認(rèn)要求建立SSL連接。
      為了符合當(dāng)前不使用SSL連接的應(yīng)用程序,verifyServerCertificate屬性設(shè)置為’false’。
      如果你不需要使用SSL連接,你需要通過設(shè)置useSSL=false來顯式禁用SSL連接。
      如果你需要用SSL連接,就要為服務(wù)器證書驗證提供信任庫,并設(shè)置useSSL=true。

      推薦學(xué)習(xí):《mysql視頻教程》

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號