我有一个类似于这个的春季批处理工作:
<batch:job id="job">
<batch:step id="step1">
...
</batch:step>
<batch:step id="step2">
...
</batch:step>
</batch:job>
当我试图执行我得到的工作时
BeanDefinitionParsingException: Configuration problem: The element [step2] is unreachable
答案 0 :(得分:34)
问题是第1步中缺少next
属性:
<batch:step id="step1" next="step2">