diff --git a/docs/src/site/docbook/reference/execution.xml b/docs/src/site/docbook/reference/execution.xml index 77256ece3..b2eee87ff 100644 --- a/docs/src/site/docbook/reference/execution.xml +++ b/docs/src/site/docbook/reference/execution.xml @@ -295,7 +295,7 @@ in order to obtain an execution: <bean id="jobLauncher" - class="org.springframework.batch.execution.launch.SimpleJobLauncher"> + class="org.springframework.batch.core.launch.support.SimpleJobLauncher"> <property name="jobRepository" ref="jobRepository" /> </bean> @@ -341,7 +341,7 @@ TaskExecutor: <bean id="jobLauncher" - class="org.springframework.batch.execution.launch.SimpleJobLauncher"> + class="org.springframework.batch.core.launch.support.SimpleJobLauncher"> <property name="jobRepository" ref="jobRepository" /> <property name="taskExecutor"> <bean class="org.springframework.core.task.SimpleAsyncTaskExecutor" /> @@ -444,7 +444,7 @@ convenience: JobRepositoryFactoryBean. <bean id="jobRepository" - class="org.springframework.batch.execution.repository.JobRepositoryFactoryBean" + class="org.springframework.batch.core.repository.support.JobRepositoryFactoryBean" <property name="databaseType" value="hsql" /> <property name="dataSource" value="dataSource" /> </bean> @@ -470,13 +470,13 @@ </bean> <bean id="mapJobInstanceDao" - class="org.springframework.batch.execution.repository.dao.MapJobInstanceDao" /> + class="org.springframework.batch.core.repository.dao.MapJobInstanceDao" /> <bean id="mapJobExecutionDao" - class="org.springframework.batch.execution.repository.dao.MapJobExecutionDao" /> + class="org.springframework.batch.core.repository.dao.MapJobExecutionDao" /> <bean id="mapStepExecutionDao" - class="org.springframework.batch.execution.repository.dao.MapStepExecutionDao" /> + class="org.springframework.batch.core.repository.dao.MapStepExecutionDao" /> The Map* DAO implementations store the batch artifacts in a transactional map. So, the repository and DAOs may still be used @@ -1535,4 +1535,4 @@ state in a transactional resource like a database. - \ No newline at end of file +