ENGINE-01003 Process with id 'ddddddddd' has no attribute isExecutable. Better set the attribute explicitly, especially to be compatible with future engine versions which might change the default behavior.
时间: 2024-01-26 12:03:10 浏览: 163
my-pg.rar_ddddddddd XXXX
这个错误是由Activiti工作流引擎产生的。它表明在处理 ID 为 'ddddddddd' 的进程时,isExecutable 属性未设置。建议将该属性显式设置为 true 或 false,以确保与将来的引擎版本兼容。可以在编写 BPMN 文件时设置该属性,例如:
```xml
<process id="myProcess" name="My Process" isExecutable="true">
<!-- process definition -->
</process>
```
或者在使用 API 创建流程时设置该属性,例如:
```java
BpmnModelInstance modelInstance = Bpmn.createProcess("myProcess")
.executable()
.startEvent()
.userTask()
.endEvent()
.done();
```
阅读全文