出现The server time zone value ‘�й���׼ʱ��‘ is unrecogni的解决方法

开发数据库相关的项目时,出现如下的异常:org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLException: The server time zone value ‘�й���׼ʱ��’ 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.

解决办法:

需要在你配置mysql数据库的文件的url后拼接“?serverTimezone=UTC”
,如下所示:

url: jdbc:mysql://localhost:3306/db_film?serverTimezone=UTC

猜你喜欢

转载自blog.csdn.net/weixin_45942124/article/details/108146571
今日推荐