解决报错:Cause: java.sql.SQLSyntaxErrorException: Table '*.act_ge_property' doesn't exist

1、出现问题原因

原因是mysql版本问题,mysql8.xxx以上驱动会出现这个问题,下图是我原mysql配置,是8.0+。
因为mysql使用schema标识库名而不是catalog,因此mysql会扫描所有的库来找表,如果其他库中有相同名称的表,activiti就以为找到了,本质上这个表在当前数据库中并不存在。
设置nullCatalogMeansCurrent=true,表示mysql默认当前数据库操作,在mysql-connector-java 5.xxx该参数默认为true,在6.xxx以上默认为false,因此需要设置nullCatalogMeansCurrent=true。

2、解决方式

xml 文件配置 添加下面url 链接粗体部分






3、.yml文件 配置

配置mysql连接时加上:nullCatalogMeansCurrent=true 如粗体所示
url: jdbc:mysql://localhost:3306/demo2?useUnicode=true&characterEncoding=utf-8&useSSL=true&nullCatalogMeansCurrent=true&serverTimezone=UTC
username: root
password: root

你可能感兴趣的:(解决报错:Cause: java.sql.SQLSyntaxErrorException: Table '*.act_ge_property' doesn't exist)