mysql5.6.16使用jdbc连接时报错:
具体报错信息:
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.
即,url里设置一下时区就行了
原:
spring.datasource.url=jdbc:mysql://localhost:3306/demo
改:
spring.datasource.url=jdbc:mysql://localhost:3306/demo?
useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
本文详细介绍了在使用mysql5.6.16版本通过JDBC连接时遇到的时区配置问题,具体表现为java.sql.SQLException异常,指出服务器时区值未被识别。文章提供了解决方案,即在URL中明确设置时区参数,如使用Asia/Shanghai,以确保时间区域支持的正确应用。
3579





