flowable工作流项目第一次启动报错表不存在,是因为连接mysql数据库的时候没有设置&nullCatalogMeansCurrent=true,mysql5.0以上该配置默认为flase,即不操作本数据库。因此需要修改为true。
datasource:url: jdbc:mysql://127.0.0.1:3306/flowable_demo?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=GMT%2B8&allowMultiQueries=true&rewriteBatchedStatements=true&nullCatalogMeansCurrent=trueusername: rootpassword: root