Creating a 'decider-step-loop' with spring-java-config
问题 I'm trying to port a spring-batch job, which is defined in xml to a java-config based job. This is a snippet of my job-configuration-file: <decision id="decision" decider="someDecider"> <next on="continue" to="stepCont" /> <next on="timeout" to="stepTimeout" /> <end on="COMPLETED" /> </decision> <step id="stepCont" next="stepReport"> ... do something </step> <step id="stepReport" next="decision"> ... create report </step> <step id="stepTimeout"> ... </step> Is there a way to create such a