OPEN - issue BATCH-429: Combine the core and execution modules

http://jira.springframework.org/browse/BATCH-429

Remove duplicate step factory beans (where did they come from?)
This commit is contained in:
dsyer
2008-03-09 09:29:40 +00:00
parent 005de0523e
commit fd4e2ed57b
11 changed files with 5 additions and 1216 deletions

View File

@@ -10,7 +10,7 @@
<bean id="retrySample" parent="simpleJob">
<property name="steps">
<bean id="step1" parent="simpleStep"
class="org.springframework.batch.core.step.StatefulRetryStepFactoryBean">
class="org.springframework.batch.core.step.support.StatefulRetryStepFactoryBean">
<property name="itemReader" ref="itemGenerator" />
<property name="itemWriter" ref="itemWriter" />
<property name="retryLimit" value="3" />

View File

@@ -58,7 +58,7 @@
<property name="allowStartIfComplete" value="true" />
</bean>
<bean id="simpleStep" class="org.springframework.batch.core.step.DefaultStepFactoryBean"
<bean id="simpleStep" class="org.springframework.batch.core.step.support.DefaultStepFactoryBean"
abstract="true">
<property name="transactionManager" ref="transactionManager" />
<property name="jobRepository" ref="jobRepository" />