W sterowniku MySql JDBC występuje błąd, który powoduje ładowanie całego zestawu danych do pamięci niezależnie od parametrów przekazanych do metody tworzenia instrukcji. Zobacz http://dev. mysql.com/doc/refman/5.0/en/connector-j-reference-implementation-notes.html jak prawidłowo otworzyć kursor.
Oto jak to robię:
<bean class="org.springframework.batch.item.database.JdbcCursorItemReader">
<property name="verifyCursorPosition" value="false" />
<property name="dataSource" ref="remoteDataSource" />
<property name="rowMapper">
<bean class="org.springframework.jdbc.core.SingleColumnRowMapper" />
</property>
<property name="fetchSize">
<util:constant static-field="java.lang.Integer.MIN_VALUE" />
</property>
<property name="sql">
<value>SELECT foo, bar FROM baz</value>
</property>
</bean>