在使用idea啟動mybatis項目時,報錯The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. You must...
原因是使用了Mysql Connector/J 6.x以上的版本,然后就報了時區的錯誤,解決方法:
在配置url的時候不能簡單寫成 :
jdbc:mysql://localhost:3306/mybatis
而是要寫成 :
jdbc:mysql://localhost:3306/mybatis? serverTimezone=UTC
而是要寫成 :
jdbc:mysql://localhost:3306/mybatis? serverTimezone=UTC