BeanDefinitionParsingException:配置:元素 [step2] 无法访问

Posted

技术标签:

【中文标题】BeanDefinitionParsingException:配置:元素 [step2] 无法访问【英文标题】:BeanDefinitionParsingException: Configuration: The element [step2] is unreachable 【发布时间】:2013-12-15 21:20:59 【问题描述】:

我有类似这样的春季批处理作业:

<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

【问题讨论】:

【参考方案1】:

问题是step1中缺少next属性:

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

【讨论】:

以上是关于BeanDefinitionParsingException:配置:元素 [step2] 无法访问的主要内容,如果未能解决你的问题,请参考以下文章