com.mysql.jdbc.Driver 和 com.mysql.cj.jdbc.Driver的區別 serverTimezone設定:

com.mysql.jdbc.Driver 是 mysql-connector-java 5中的, com.mysql.cj.jdbc.Driver 是 mysql-connector-java 6中的

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

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

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

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

在設定時區的時候,如果設定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
username=root
password=

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

<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<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.

不推薦不使用服務器身份驗證來建立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(安全套接層)

擴展:
在mysql文檔中發現可用的時區都在/usr/share/zoneinfo目錄下,ll下發現可用的時區信息如下

lewis@lewis-dzwww:/usr/share/zoneinfo$ ll  
總用量 308  
drwxr-xr-x  21 root root  4096 527 12:54 ./  
drwxr-xr-x 334 root root 12288 621 15:11 ../  
drwxr-xr-x   2 root root  4096 527 12:56 Africa/  
drwxr-xr-x   6 root root  4096 527 12:56 America/  
drwxr-xr-x   2 root root  4096 527 12:56 Antarctica/  
drwxr-xr-x   2 root root  4096 527 12:56 Arctic/  
drwxr-xr-x   2 root root  4096 527 12:56 Asia/  
drwxr-xr-x   2 root root  4096 527 12:56 Atlantic/  
drwxr-xr-x   2 root root  4096 527 12:56 Australia/  
drwxr-xr-x   2 root root  4096 527 12:56 Brazil/  
drwxr-xr-x   2 root root  4096 527 12:56 Canada/  
-rw-r--r--   1 root root  2102 421 02:09 CET  
drwxr-xr-x   2 root root  4096 527 12:56 Chile/  
-rw-r--r--   1 root root  2294 421 02:09 CST6CDT  
-rw-r--r--   1 root root  2437 421 02:09 Cuba  
-rw-r--r--   1 root root  1876 421 02:09 EET  
-rw-r--r--   1 root root  1972 421 02:09 Egypt  
-rw-r--r--   1 root root  3559 421 02:09 Eire  
-rw-r--r--   1 root root   127 421 02:09 EST  
-rw-r--r--   1 root root  2294 421 02:09 EST5EDT  
drwxr-xr-x   2 root root  4096 527 12:56 Etc/  
drwxr-xr-x   2 root root  4096 527 12:56 Europe/  
-rw-r--r--   1 root root   264 421 02:09 Factory  
-rw-r--r--   1 root root  3687 421 02:09 GB  
lrwxrwxrwx   1 root root     2 527 09:07 GB-Eire -> GB  
-rw-r--r--   1 root root   127 421 02:09 GMT  
lrwxrwxrwx   1 root root     3 527 09:07 GMT0 -> GMT  
lrwxrwxrwx   1 root root     3 527 09:07 GMT-0 -> GMT  
lrwxrwxrwx   1 root root     3 527 09:07 GMT+0 -> GMT  
lrwxrwxrwx   1 root root     3 527 09:07 Greenwich -> GMT  
-rw-r--r--   1 root root  1189 421 02:09 Hongkong  
-rw-r--r--   1 root root   128 421 02:09 HST  
-rw-r--r--   1 root root  1190 421 02:09 Iceland  
drwxr-xr-x   2 root root  4096 527 12:56 Indian/  
-rw-r--r--   1 root root  1678 421 02:09 Iran  
-rw-r--r--   1 root root  4475 224 17:01 iso3166.tab  
-rw-r--r--   1 root root  2265 421 02:09 Israel  
-rw-r--r--   1 root root   507 421 02:09 Jamaica  
-rw-r--r--   1 root root   355 421 02:09 Japan  
-rw-r--r--   1 root root   237 421 02:09 Kwajalein  
-rw-r--r--   1 root root 10384 222 23:58 leap-seconds.list  
-rw-r--r--   1 root root   655 421 02:09 Libya  
lrwxrwxrwx   1 root root    14 527 09:07 localtime -> /etc/localtime  
-rw-r--r--   1 root root  2102 421 02:09 MET  
drwxr-xr-x   2 root root  4096 527 12:56 Mexico/  
-rw-r--r--   1 root root   127 421 02:09 MST  
-rw-r--r--   1 root root  2294 421 02:09 MST7MDT  
-rw-r--r--   1 root root  2453 421 02:09 Navajo  
-rw-r--r--   1 root root  2460 421 02:09 NZ  
-rw-r--r--   1 root root  2057 421 02:09 NZ-CHAT  
drwxr-xr-x   2 root root  4096 527 12:56 Pacific/  
-rw-r--r--   1 root root  2705 421 02:09 Poland  
-rw-r--r--   1 root root  3453 421 02:09 Portugal  
drwxr-xr-x  19 root root  4096 527 12:56 posix/  
-rw-r--r--   1 root root  3545 421 02:09 posixrules  
-rw-r--r--   1 root root   414 421 02:09 PRC  
-rw-r--r--   1 root root  2294 421 02:09 PST8PDT  
drwxr-xr-x  19 root root  4096 527 12:56 right/  
-rw-r--r--   1 root root   800 421 02:09 ROC  
-rw-r--r--   1 root root   571 421 02:09 ROK  
-rw-r--r--   1 root root   428 421 02:09 Singapore  
drwxr-xr-x   2 root root  4096 527 12:56 SystemV/  
-rw-r--r--   1 root root  2747 421 02:09 Turkey  
-rw-r--r--   1 root root   127 421 02:09 UCT  
lrwxrwxrwx   1 root root     4 527 09:07 Universal -> Zulu  
drwxr-xr-x   2 root root  4096 527 12:56 US/  
lrwxrwxrwx   1 root root     4 527 09:07 UTC -> Zulu  
-rw-r--r--   1 root root  1873 421 02:09 WET  
-rw-r--r--   1 root root  1528 421 02:09 W-SU  
-rw-r--r--   1 root root 17533 413 16:01 zone1970.tab  
-rw-r--r--   1 root root 19014 413 16:01 zone.tab  
-rw-r--r--   1 root root   127 421 02:09 Zulu  



可以選擇東8區的Hongkong、Asia/Shanghai或者Asia/Hongkong作爲參數,修改後url爲

jdbc:mysql://172.xx.xx.xx:3306/test?useUnicode=true&characterEncoding=gbk&useSSL=true

&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Hongkong  

轉載於此:
https://www.cnblogs.com/liaojie970/p/8916568.html

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章