spring boot 啟動時報錯The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized orJDBC driver

A川川發表於2018-12-04

最近初學spring boot 也是第一次寫部落格
剛剛開始整合mybatis,性質滿滿的啟動,然後出現這個錯誤(圖就不貼了):
java.sql.SQLException: The server time zone value ‘Öйú±ê׼ʱ¼ä’ is unrecognized or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
一看,‘Öйú±ê׼ʱ¼ä’ 這個就慌了,最後順利解決
解決方式:
jdbc:mysql://localhost:3306/student?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8
加上一句serverTimezone=GMT就ok拉
原文地址https://www.cnblogs.com/bobofei/p/9958054.html

相關文章