当我使用 Spring Batch 运行以下代码时,出现异常。
<job id="simpleJob">
<step id="parentStep">
<tasklet allow-start-if-complete="true">
<chunk reader="simpleReader" writer="simpleWriter" commit-interval="3"/>
</tasklet>
</step>
<step id="concreteStep1" parent="parentStep">
<tasklet start-limit="5">
<chunk processor="simpleProcessor" commit-interval="2"/>
</tasklet>
</step>
</job>
它给出了以下例外:
Exception in thread "main" org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: The element [concreteStep1] is unreachable
我不明白为什么我会收到这个错误。我在spring 源代码中看到了类似的代码。即使这样也行不通。这个你能帮我吗。