public interface SqlParameterSource
JdbcTemplate operations.
This interface allows for the specification of SQL type in addition to parameter values. All parameter values and types are identified by specifying the name of the parameter.
Intended to wrap various implementations like a Map or a JavaBean with a consistent interface.
JdbcTemplateboolean hasValue(String paramName)
paramName - the name of the parameterObject getValue(String paramName) throws IllegalArgumentException
paramName - the name of the parameterIllegalArgumentException - if there is no value for the requested parameterCopyright © 2020. All rights reserved.