flowable-ui绘图常见错误
前言
使用flowable
常见错误集锦
1、isExecutable
所有进程定义都设置为不可执行(进程上的属性“isExecutable”)。这是不允许的。
All process definition are set to be non-executable
(property 'isExecutable' on process). This is not allowed.
原因
没有勾选Is executable
可执行得
2、
Unknown property used in expression:
3、gateway
独占网关至少有一个没有条件的传出序列流(这不是默认的)
Exclusive gateway has at least one outgoing sequence
flow without a condition (which isn't the default one)
原因
网关是做是否判断得,只有一条线,同意或者不同意是不行的,如果只有一个,应该去掉网关节点
4、sequenceflow
sequenceflow的目标无效
invalid target for sequenceflow
原因
箭头这个拉扯的时候一定要拉到显示红点,报错是因为没连上
5、 sequence flow
独占网关至少有一个没有条件的传出序列流(这不是默认的)
Exclusive gateway has at least one outgoing sequence
flow without a condition (which isn't the default one)
原因
这条网关输出流,需要有个条件,根据业务填入${handleCode=="disagree"}
即可