BATCH-1083: changed docs to use rowMapper instead of parameterizedRowMapper for JdbcPagingItemReader

This commit is contained in:
trisberg
2009-02-16 16:37:27 +00:00
parent 0a29a8e0a3
commit 6bde16757e

View File

@@ -2217,13 +2217,13 @@
</map>
</property>
<property name="pageSize" value="1000"/>
<property name="parameterizedRowMapper" ref="customerMapper"/>
<property name="rowMapper" ref="customerMapper"/>
</bean>
</programlisting>
<para>This configured <classname>ItemReader</classname> will return
<classname>CustomerCredit</classname> objects using the
<classname>ParameterizedRowMapper</classname> that must be specified.
<classname>RowMapper</classname> that must be specified.
The 'pageSize' property determines the number of entities read from
the database for each query execution.</para>