如何在 IIB 中创建一个具有每个流范围的变量?

How to create a variable in IIB which has scope for each single flow?

我需要在 IIB 流程中创建一个变量,该变量必须在整个流程中可用。我已经完成了文档中的变量创建。根据我的理解,我应该在 ESQL 模块中创建一个 SHARED 变量。但是在文档中它被称为 "Subsequent messages can access the data left by a previous message." 我不明白。

任何人都可以建议如何创建一个变量,该变量应该只具有该流的范围(仅每个 request/instance)?

例如,如果我必须捕获有效载荷中某些元素的总值并将计算值存储在创建的变量中,我可以在整个流程的所有节点上使用它。

Environment 树结构可用于您的用例:

The environment tree differs from the local environment tree in that a single instance of it is maintained throughout the message flow.

When the message flow processing is complete, the Environment tree is discarded.