關於MySql升級JDBC架包導致時區問題報錯(The server time zone value '?й???????' is unrecognized or represents more than one time zone)


報錯信息:

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.

原因:

    在使用mysql的jdbc驅動最新版(6.0+)版本時,數據庫和系統時區差異引起的問題。

解決辦法:

1.一種是降版本,並不推薦,如果需要降版本5.5版本可以滿足基本需要;

 

2.還有一種是在jdbc連接的url后面加上serverTimezone=UTC或GMT即可,如果需要指定使用gmt+8時區,需要寫成GMT%2B8,不然可能會報錯誤,解析為空

示例如下:

jdbc.url=jdbc:mysql://localhost:3306/demo?serverTimezone=UTC&characterEncoding=utf-8

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM