BATCH-335 and BATCH-316: As part of the documentation efforts of RC1, the DrivingQueryItemReader has had javadoc updates. Specifically, the MultipleColumnJdbcKeyGenerator, which has been a source of confusion, has had it's javadocs beefed up.

The KeyGenerator interface was also renamed to KeyCollector.  The issue was raised that it's not actually generating keys, but rather collecting them from the database.
This commit is contained in:
lucasward
2008-03-10 19:38:34 +00:00
parent 63f2619d17
commit 5f5843c469

View File

@@ -41,7 +41,7 @@
</bean>
<bean id="ibatisKeyGenerator"
class="org.springframework.batch.item.database.support.IbatisKeyGenerator">
class="org.springframework.batch.item.database.support.IbatisKeyCollector">
<property name="drivingQueryId" value="getAllCustomerCreditIds" />
<property name="sqlMapClient" ref="sqlMapClient" />
</bean>