java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized...

java.sql.SQLException: The server time zone value ‘Öйú±ê׼ʱ¼ä’ is unrecognized…
出现这个错误的原因是因为我们使用的MySQL数据库版本比较高(8.0以上)所以需要在访问的数据库url中增加如下语句

serverTimezone=UTC

例如在我的maven项目中,我是这样写的:

<property name="url" value="jdbc:mysql://localhost:3306/selection_course?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC"/>

补充一下,在对mybatis的学习中,jdbc.url是配置在dbconfig.properties文件下,代码应该这么写:

jdbc.url=jdbc:mysql://localhost:3306/mybatis?allowMultiQueries=true&characterEncoding=utf-8&serverTimezone=UTC

dbconfig.properties的全部代码如下:

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mybatis?allowMultiQueries=true&characterEncoding=utf-8&serverTimezone=UTC
jdbc.username=root
jdbc.password=1234

你可能感兴趣的:(java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized...)