I have Following Code in which I have create list of objects according to batchSize
can any body suggest how to implement this ,I am thinking of checking rownum in rowmapper class equals batch size then problem is
how to return and create List from rowmapper implementation
public class TestAppDao {
public JdbcTemplate jdbcTemplate;
public JdbcTemplate getJdbcTemplate() {
return jdbcTemplate ;
}
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
public List<Circle> getAllCircle(int batchSize){
String sql = "select * from circle";
return jdbcTemplate.query(sql, new Object[]{}, new CircleMapper());
}
private static final class CircleMapper implements RowMapper<Circle>{
@Override
public Circle mapRow(ResultSet resultSet, int rowNum) throws SQLException {
Circle circle = new Circle();
circle.setId(resultSet.getInt(1));
circle.setName(resultSet.getString(2));
return circle;
}
}
}
selectreturns fewer elements than your predefined size, is it an error? – Abhinav Sarkar Jan 15 at 18:45