0

我需要将 3 个文件保存到 DB:A、B、C。文件 B 不能在 A 之前插入 DB,文件 C 不能在 B 之前插入。
在作业之间创建依赖关系的最佳方法是什么?

4

1 回答 1

3

用 3 个步骤编写一个作业:在步骤 1 中将文件 A 写入 DB,在步骤 2 中写入文件 B,在步骤 3 中写入文件 C。

<job id="myJob>
  <step id="step1" next="step2"><!-- write file A --></step>
  <step id="step2" next="step3"><!-- write file B --></step>
  <step id="step3"><!-- write file C --></step>
</job>
于 2013-10-31T07:24:55.977 回答