The server time zone value 'AEDT' is unrecognized or represents more than one time zone.

記一次本地測試鏈接澳洲數據庫啓動異常

下面是數據鏈接配置
datasource:

url: jdbc:mysql://xxx:3306/xxxx?useUnicode=true&characterEncoding=utf8&useSSL=false?

username: xxxx

password: xxxx

type: com.zaxxer.hikari.HikariDataSource

啓動拋出異常:

The server time zone value 'AEDT' 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.

查詢後得知是因爲時區差造成的

在鏈接url後面加上&serverTimezone=UTC,即默認0時區。即可啓動

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章