在鏈接字符串後面加上?serverTimezone=UTCmysql
其中UTC是統一標準世界時間。sql
完整的鏈接字符串示例:jdbc:mysql://localhost:3306/test?serverTimezone=UTCspa
或者還有另外一種選擇:jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8,這個是解決中文亂碼輸入問題,固然也能夠和上面的一塊兒結合:jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTCcode