解决flowable问题:as a v5 tag and flowable 5 compatibility is not enabled
·
解决org.flowable.common.engine.api.FlowableException: process definition with id f0443193-b147-11ef-82ca-00ff0737fbdb has a v5 tag and flowable 5 compatibility is not enabled问题记录,找到flowable数据库的如下表,act_re_procdef和act_re_deployment,可以看到ENGINE_VERSION_字段存在值v5,将其更新为null即可。
UPDATE `act_re_procdef` set ENGINE_VERSION_ = NULL where ID_='f0443193-b147-11ef-82ca-00ff0737fbdb'
UPDATE `act_re_deployment` set ENGINE_VERSION_ = NULL where ID_='f00aab00-b147-11ef-82ca-00ff0737fbdb'
更多推荐




所有评论(0)