Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 3 个文件保存到 DB:A、B、C。文件 B 不能在 A 之前插入 DB,文件 C 不能在 B 之前插入。 在作业之间创建依赖关系的最佳方法是什么?
用 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>