解决SpringBoot集成Activiti 6.0工作流启动报错

  • Post author:
  • Post category:其他

解决SpringBoot集成Activiti 6.0工作流启动报错

Cause: java.sql.SQLSyntaxErrorException: Table ‘xxx.act_ge_property’ doesn’t exist

因为springboot的使用的的数据库驱动版本是com.mysql.cj.jdbc.Driver,创建activi的表会出现错误。

解决方式一:

 自己手动创建表
CREATE TABLE `act_ge_property` (
  `NAME_` varchar(64) COLLATE utf8_bin NOT NULL,
  `VALUE_` varchar(300) COLLATE utf8_bin DEFAULT NULL,
  `REV_` int(11) DEFAULT NULL,
  PRIMARY KEY (`NAME_`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin

解决方式二:

在配置文件的数据库连接中加入下面即可
nullCatalogMeansCurrent=true

url: jdbc:mysql://localhost:3306/xxx?useUnicode=true&characterEncoding=utf8&nullCatalogMeansCurrent=true&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8