JDBC连接Mysql报错:you must configure either the server or jdbc to use a more specifc time zone value...

在使用weka访问数据库配置文件时,报错: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.

将weka.jar包中weka\experiment\DatabaseUtils.props文件增加jdbcURL项后部参数即可

# database URL
jdbcURL=jdbc:mysql://localhost:3306/weka?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC

配置文件步骤

1.停止正在运行的weka
2.下载mysql-connector-java-8.0.17.jar驱动文件,并在CLASSPATH环境变量中进行配置
首先,我在weka安装的根目录新建lib文件夹,放入mysql-connector-java-8.0.17.jar驱动文件,将此路径配置到CLASSPATH环境变量
其次,我将mysql-connector-java-8.0.17.jar驱动文件放入jdk安装路径下的jre\lib\ext文件夹,将此路径也配置到CLASSPATH环境变量
3.在weka.jarweka-src.jar归档文件中配置DatabaseUtils.props.mysql文件,将其重命名为DatabaseUtils.props,修改jdbcDriver=com.mysql.jdbc.Driver,jdbcURL=jdbc:mysql://localhost:3306/weka,为防止报错可添加上述参数,并且一定要保证weka数据库的存在,将保存后的文件复制到weka安装的根目录
4.重启weka即可

你可能感兴趣的:(Weka,MySQL)