批处理拆分如何使两个步骤并行拆分

时间:2018-07-19 09:09:34

标签: xml spring-batch

我想使样本并行步骤只有两个步骤。

示例:

<batch:split id="split" >
    <flow>
        <step id="a-step">
            <tasklet ref="a" />
        </step>
    </flow>
    <flow>
        <step id="b-step">
            <tasklet ref="b" />
        </step>
    </flow>
</batch:split>

但是它不起作用。有什么办法可以实现它?

0 个答案:

没有答案