RESOLVED - issue BATCH-110: Potential simplification of DefaultJobExecutor by not having to include the StepExecutorFactory always

http://opensource.atlassian.com/projects/spring/browse/BATCH-110
This commit is contained in:
dsyer
2007-08-23 07:27:16 +00:00
parent 9ea5cb52a5
commit 99cc798fee
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@
<bean id="batchContainerOverride" parent="jobExecutorFacade">
<property name="jobExecutor">
<bean parent="jobExecutor">
<property name="stepExecutorResolver">
<property name="stepExecutorFactory">
<bean
class="org.springframework.batch.execution.step.DefaultStepExecutorFactory">
<property name="stepExecutorName" value="notifyingStepExecutor" />

View File

@@ -44,7 +44,7 @@
<bean id="jobExecutor" class="org.springframework.batch.execution.job.DefaultJobExecutor">
<property name="jobRepository" ref="simpleJobRepository" />
<property name="stepExecutorResolver">
<property name="stepExecutorFactory">
<bean class="org.springframework.batch.execution.step.DefaultStepExecutorFactory">
<property name="stepExecutorName" value="stepExecutor" />
</bean>