public class GenericSqlQuery<T> extends SqlQuery<T>
setRowMapper(org.springframework.jdbc.core.RowMapper<T>)
,
setRowMapperClass(java.lang.Class<? extends org.springframework.jdbc.core.RowMapper>)
logger
Constructor and Description |
---|
GenericSqlQuery() |
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet()
Ensures compilation if used in a bean factory.
|
protected RowMapper<T> |
newRowMapper(java.lang.Object[] parameters,
java.util.Map<?,?> context)
Subclasses must implement this method to extract an object per row, to be
returned by the
List . |
void |
setRowMapper(RowMapper<T> rowMapper)
Set a specific
RowMapper instance to use for this query. |
void |
setRowMapperClass(java.lang.Class<? extends RowMapper> rowMapperClass)
|
execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, executeByNamedParam, executeByNamedParam, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObjectByNamedParam, findObjectByNamedParam, getRowsExpected, setRowsExpected
compileInternal, getParsedSql, newPreparedStatementCreator, newPreparedStatementCreator, newPreparedStatementSetter, onCompileInternal
allowsUnusedParameters, checkCompiled, compile, declareParameter, getDeclaredParameters, getGeneratedKeysColumnNames, getJdbcTemplate, getResultSetType, getSql, isCompiled, isReturnGeneratedKeys, isUpdatableResults, setDataSource, setFetchSize, setGeneratedKeysColumnNames, setJdbcTemplate, setMaxRows, setParameters, setQueryTimeout, setResultSetType, setReturnGeneratedKeys, setSql, setTypes, setUpdatableResults, supportsLobParameters, validateNamedParameters, validateParameters
public void setRowMapper(RowMapper<T> rowMapper)
RowMapper
instance to use for this query.public void setRowMapperClass(java.lang.Class<? extends RowMapper> rowMapperClass)
public void afterPropertiesSet()
RdbmsOperation
afterPropertiesSet
in interface InitializingBean
afterPropertiesSet
in class RdbmsOperation
protected RowMapper<T> newRowMapper(java.lang.Object[] parameters, java.util.Map<?,?> context)
SqlQuery
List
.newRowMapper
in class SqlQuery<T>
parameters
- the parameters to the execute()
method,
in case subclass is interested; may be null
if there
were no parameters.context
- contextual information passed to the mapRow
callback method. The JDBC operation itself doesn't rely on this parameter,
but it can be useful for creating the objects of the result list.SqlQuery.execute(java.lang.Object[], java.util.Map<?, ?>)