List<Information> infoList = getJdbcOperations().query(query.getSql(),
query.getParameters(), new InformationRowMapper(){
@Override
public Information mapRow(ResultSet rs, int rowNum)
throws SQLException {
Information info = super.mapRow(rs, rowNum);
info.setTitle(rs.getString("title"));
return info;
}
}.setTargetClass(Information.class));
return infoList;
}