Drools/JBPM5支持数据流吗?
Drools/JBPM5支持数据流吗?
还是只是控制流量?
Does Drools/JBPM5 support data flow?
Or is it only control flow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Drools/JBPM5支持数据流吗?
还是只是控制流量?
Does Drools/JBPM5 support data flow?
Or is it only control flow?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
它使用 BPMN2 来建模业务流程。 BPMN2 并没有真正对数据流进行可视化建模。相反,如果要将数据从一个节点传递到另一个节点,它会使用数据元素(例如过程变量)来存储信息。因此,第一个节点将值存储在数据元素中,而另一个节点稍后可以检索其值。
请注意,BPMN2 还允许您使用节点和输入/输出数据之间的数据连接来直观地对此(部分)进行建模。
jBPM5 不要求您对数据流进行可视化建模(实际上,默认情况下它不会这样做,因为这会使流程图变得复杂,但它使用图中不可见的数据输入和输出关联)。但是您应该能够建模并执行 BPMN2 流程,该流程还可以对数据流进行图形建模。
克里斯
It is using BPMN2 for modeling business processes. BPMN2 does not really visually model data flow. Rather, if data is to be passed from one node to another, it uses data elements like for example a process variable to store the information. So the first node stores a value in a data element and the other node can retrieve its value later.
Note that BPMN2 also allows you to model (some of) this visually, using data connections between nodes and the input / output data.
jBPM5 does not require you to also visually model the data flow (actually, by default it does not do this as it complicates the process diagram, but it uses data input and output associations that are not visible in the diagram). But you should be able to just model and execute a BPMN2 process that also graphically models the data flow.
Kris