The server time zone value 'CEST' is unrecognized

前端 未结 3 1700
忘了有多久
忘了有多久 2020-12-08 16:24

I am using hibernate (Hibernate Maven 5.2.15.Final, Mysql-connector Maven 8.0.9-rc) whith mysql 5.7 on lampp environment on linux so.

I am in Italy (Central Europea

3条回答
  •  借酒劲吻你
    2020-12-08 16:58

    If the problem is when connecting to the db, I found the solution in the NOTE of this answer.

    In your connection url use the following:

    String url = "jdbc:mysql://localhost/mydb?serverTimezone=Europe/Rome";
    

    This worked for me to connect with flyway and timezone Europe/Amsterdam.

提交回复
热议问题