RESOLVED - issue BATCH-562: org.springframework.batch.execution package still referenced in documentation

This commit is contained in:
dsyer
2008-04-07 07:29:55 +00:00
parent afb9508e4f
commit 82719ce49c

View File

@@ -295,7 +295,7 @@
in order to obtain an execution:</para>
<programlisting> &lt;bean id="jobLauncher"
class="org.springframework.batch.execution.launch.SimpleJobLauncher"&gt;
class="org.springframework.batch.core.launch.support.SimpleJobLauncher"&gt;
&lt;property name="jobRepository" ref="jobRepository" /&gt;
&lt;/bean&gt;</programlisting>
@@ -341,7 +341,7 @@
<classname>TaskExecutor</classname>:</para>
<programlisting> &lt;bean id="jobLauncher"
class="org.springframework.batch.execution.launch.SimpleJobLauncher"&gt;
class="org.springframework.batch.core.launch.support.SimpleJobLauncher"&gt;
&lt;property name="jobRepository" ref="jobRepository" /&gt;
&lt;property name="taskExecutor"&gt;
&lt;bean class="org.springframework.core.task.SimpleAsyncTaskExecutor" /&gt;
@@ -444,7 +444,7 @@
convenience: <classname>JobRepositoryFactoryBean</classname>.</para>
<programlisting> &lt;bean id="jobRepository"
class="org.springframework.batch.execution.repository.JobRepositoryFactoryBean"
class="org.springframework.batch.core.repository.support.JobRepositoryFactoryBean"
&lt;property name="databaseType" value="hsql" /&gt;
&lt;property name="dataSource" value="dataSource" /&gt;
&lt;/bean&gt;</programlisting>
@@ -470,13 +470,13 @@
&lt;/bean&gt;
&lt;bean id="mapJobInstanceDao"
class="org.springframework.batch.execution.repository.dao.MapJobInstanceDao" /&gt;
class="org.springframework.batch.core.repository.dao.MapJobInstanceDao" /&gt;
&lt;bean id="mapJobExecutionDao"
class="org.springframework.batch.execution.repository.dao.MapJobExecutionDao" /&gt;
class="org.springframework.batch.core.repository.dao.MapJobExecutionDao" /&gt;
&lt;bean id="mapStepExecutionDao"
class="org.springframework.batch.execution.repository.dao.MapStepExecutionDao" /&gt;</programlisting>
class="org.springframework.batch.core.repository.dao.MapStepExecutionDao" /&gt;</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>