类 ColumnMapRowMapper

  • 所有已实现的接口:
    RowMapper<Map<String,​Object>>

    public class ColumnMapRowMapper
    extends Object
    implements RowMapper<Map<String,​Object>>
    RowMapper implementation that creates a java.util.Map for each row, representing all columns as key-value pairs: one entry for each column, with the column name as key.

    The Map implementation to use and the key to use for each column in the column Map can be customized through overriding createColumnMap(int) and getColumnKey(java.lang.String), respectively.

    Note: By default, ColumnMapRowMapper will try to build a linked Map with case-insensitive keys, to preserve column order as well as allow any casing to be used for column names. This requires Commons Collections on the classpath (which will be autodetected). Else, the fallback is a standard linked HashMap, which will still preserve column order but requires the application to specify the column names in the same casing as exposed by the driver.

    从以下版本开始:
    1.2
    作者:
    Juergen Hoeller
    另请参阅:
    JdbcTemplate.queryForList(String), JdbcTemplate.queryForMap(String)
    • 方法详细资料

      • mapRow

        public Map<String,​ObjectmapRow​(ResultSet rs,
                                               int rowNum)
                                        throws SQLException
        从接口复制的说明: RowMapper
        Implementations must implement this method to map each row of data in the ResultSet. This method should not call next() on the ResultSet; it is only supposed to map values of the current row.
        指定者:
        mapRow 在接口中 RowMapper<Map<String,​Object>>
        参数:
        rs - the ResultSet to map (pre-initialized for the current row)
        rowNum - the number of the current row
        返回:
        the result object for the current row (may be null)
        抛出:
        SQLException - if a SQLException is encountered getting column values (that is, there's no need to catch SQLException)
      • createColumnMap

        protected Map<String,​ObjectcreateColumnMap​(int columnCount)
        Create a Map instance to be used as column map.

        By default, a linked case-insensitive Map will be created.

        参数:
        columnCount - the column count, to be used as initial capacity for the Map
        返回:
        the new Map instance
        另请参阅:
        LinkedCaseInsensitiveMap