最近在使用mysql的6.0.x以上的jar的時候,需要在程式碼url的連結裡面指定serverTimezone。就會出現異常,這個問題問題,是關於mysql中url時區的,發現這個陷阱如果大家不注意可能都會遇到,本文主要和大家分享mysql中url時區的陷阱該如何規避。
1.未指定serverTimezone
##xml裡面設定url<property name="url" value="jdbc:mysql://localhost:3306/mybatisstudy"/>
##
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: 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.
2.網路上的解決方案
在url後面加上參數?serverTimezone=utc
<property name="url" value="jdbc:mysql://localhost:3306/springdatastudy?serverTimezone=UTC"/>
雖然上面加上時區程式不出錯了,但是我們在用java程式碼插入到資料庫時間的時候卻出現了問題。
例如在java程式碼裡面插入的時間為:2017-08-21 17:29:56
但是在資料庫裡面顯示的時間卻為:2017-08-21 09:29:56
3.根本原因
因為時區設定的問題。
UTC代表的是全球標準時間 ,但是我們使用的時間是北京時區也就是東八區,領先UTC八個小時。
UTC + (+0800) = 本地(北京)時間
4.解決方案
url的時區使用中國標準時間。也是就serverTimezone=Asia/Shanghai
4.1 使用java程式碼取得本地的時區id
Calendar cal = Calendar.getInstance(); TimeZone timeZone = cal.getTimeZone(); System.out.println(timeZone.getID()); System.out.println(timeZone.getDisplayName());
Asia/Shanghai 中国标准时间
相關推薦:
以上是詳解mysql中url時區的陷阱該如何規避的詳細內容。更多資訊請關注PHP中文網其他相關文章!