BATCH-1651: add paging reader to jdbc partitioning sample

This commit is contained in:
Dave Syer
2010-11-22 09:43:06 +00:00
parent 426c8e674b
commit 9bb970afe2
12 changed files with 50 additions and 32 deletions

View File

@@ -22,6 +22,9 @@
<property name="url" value="${batch.jdbc.url}" />
<property name="username" value="${batch.jdbc.user}" />
<property name="password" value="${batch.jdbc.password}" />
<property name="maxActive" value="${batch.jdbc.pool.size}"/>
<property name="validationQuery" value="${batch.jdbc.validationQuery}"/>
<property name="testWhileIdle" value="${batch.jdbc.testWhileIdle}"/>
</bean>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager" lazy-init="true">