2017-11-22 4 views
0

ステップを分割しようとしましたが、「構成の問題:要素[step1]に到達できません」というメッセージが表示されます。Springバッチ:要素内に到達不能なパーティション

<step id="partitionement" next="otherStep"> 
    <partition step="step1" partitioner="bean1"> 
     <handler grid-size="10" task-executor="threadPoolTaskExecutor" /> 
    </partition> 
</step> 

<batch:step id="step1"> 
     <tasklet> 
     ... 
     </tasklet> 
</batch:step> 

<step="otherStep"> 
    ... 
</step> 

<bean id="bean1" class="OneClass"/> 

手順1で次のパラメータを設定しようとしましたが、同じエラーが発生しました。

答えて

0

解決策が見つかりました。一部 ... は

外でなければなりません
関連する問題