Removed dependency on ParameterizedRowMapper

To support Spring Framework 4.2 which removes ParameterizedRowMapper,
all references to that were switched to RowMapper.  As of Spring 3, the
interfaces are identicle so this should cause no backward compatability
issues.

BATCH-2369
This commit is contained in:
Michael Minella
2015-03-31 14:06:10 -05:00
parent 4c72e0407f
commit 7c60b055c3
21 changed files with 85 additions and 69 deletions

View File

@@ -135,7 +135,7 @@ public class JdbcPagingItemReader<T> extends AbstractPagingItemReader<T> impleme
* by the reader.
*
* @param rowMapper a
* {@link org.springframework.jdbc.core.simple.ParameterizedRowMapper}
* {@link RowMapper}
* implementation
*/
public void setRowMapper(RowMapper<T> rowMapper) {