【问题标题】:BeanDefinitionParsingException: Configuration: The element [step2] is unreachableBeanDefinitionParsingException:配置:元素 [step2] 无法访问
【发布时间】: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

【问题讨论】:

    标签: spring spring-batch


    【解决方案1】:

    问题是step1中缺少next属性:

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

    【讨论】:

      猜你喜欢
      • 2016-05-03
      • 2012-09-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-12-28
      • 1970-01-01
      • 2017-03-06
      相关资源
      最近更新 更多