之前Eclipse中报错,告诉我反向生成数据库代码的mybatis配置文件有错,我就重新copy了一份,结果现在出现这个错误。
错误现象:
Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:
1.3.2:generate (default-cli) on project apitest: 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.
打开mybatis配置文件发现他这里mysql的驱动包版本是8.0.15
<!-- 数据库驱动 -->
<classPathEntry
location="F:\tomcat-8.5.29-windows-x64\lib\mysql-connector-java-8.0.15.jar" />
打开pom.xml文件查看mysql的驱动包版本是5.1.5如下:
<!-- 导入Mysql数据库链接jar包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.5</version>
</dependency>
错误原因:
mysql的驱动包版本在配置信息中不一致造成。
解决办法:
在mysql的驱动包文件夹位置找到我们对应的版本,建议大家用6.X.X版本以下的,不然新版本会有其他的问题出现。
这里我就是把版本号统一改为5.1.5了。
问题解决!