BeanDefinitionParsingException: Configuration: The element [step2] is unreachable

放肆的年华 提交于 2019-12-10 12:28:54

问题


I had spring batch job similar to this one:

<batch:job id="job">
    <batch:step id="step1">
        ...
    </batch:step>
    <batch:step id="step2">
        ...
    </batch:step>
</batch:job>

and when tried to execute the job I got

BeanDefinitionParsingException: Configuration problem: The element [step2] is unreachable

回答1:


The problem is that there is missing next attribute in step1:

<batch:step id="step1" next="step2">


来源:https://stackoverflow.com/questions/20289814/beandefinitionparsingexception-configuration-the-element-step2-is-unreachabl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!