RESOLVED - issue BATCH-562: org.springframework.batch.execution package still referenced in documentation
This commit is contained in:
@@ -295,7 +295,7 @@
|
||||
in order to obtain an execution:</para>
|
||||
|
||||
<programlisting> <bean id="jobLauncher"
|
||||
class="org.springframework.batch.execution.launch.SimpleJobLauncher">
|
||||
class="org.springframework.batch.core.launch.support.SimpleJobLauncher">
|
||||
<property name="jobRepository" ref="jobRepository" />
|
||||
</bean></programlisting>
|
||||
|
||||
@@ -341,7 +341,7 @@
|
||||
<classname>TaskExecutor</classname>:</para>
|
||||
|
||||
<programlisting> <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: <classname>JobRepositoryFactoryBean</classname>.</para>
|
||||
|
||||
<programlisting> <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></programlisting>
|
||||
@@ -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" /></programlisting>
|
||||
class="org.springframework.batch.core.repository.dao.MapStepExecutionDao" /></programlisting>
|
||||
|
||||
<para>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.</para>
|
||||
</section>
|
||||
</section>
|
||||
</chapter>
|
||||
</chapter>
|
||||
|
||||
Reference in New Issue
Block a user