JdbcTemplate中query查询返回List JdbcTemplate中query查询返回List /** * parameter是sql语句中的 ? 的值 * 没有可不填 */ List<String> dateList; dateList = template.query(sql, new RowMapper<String>(){ public String mapRow(ResultSet rs, int rowNum) throws SQLException { return rs.getString(1); } },parameter);