Si è verificato un problema nel driver MySql JDBC che causa il caricamento dell'intero set di dati in memoria indipendentemente dai parametri passati al metodo di creazione dell'istruzione. Vedere http://dev. mysql.com/doc/refman/5.0/en/connector-j-reference-implementation-notes.html per sapere come aprire correttamente un cursore.
Ecco come lo faccio:
<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>