类 AbstractJdbcInsert

  • 直接已知子类:
    SimpleJdbcInsert

    public abstract class AbstractJdbcInsert
    extends Object
    Abstract class to provide base functionality for easy inserts based on configuration options and database meta-data.

    This class provides the base SPI for SimpleJdbcInsert.

    从以下版本开始:
    2.5
    作者:
    Thomas Risberg, Juergen Hoeller
    • 字段详细资料

      • logger

        protected final Log logger
        Logger available to subclasses.
    • 方法详细资料

      • setGeneratedKeyName

        public void setGeneratedKeyName​(String generatedKeyName)
        Specify the name of a single generated key column.
      • setAccessTableColumnMetaData

        public void setAccessTableColumnMetaData​(boolean accessTableColumnMetaData)
        Specify whether the parameter meta-data for the call should be used. The default is true.
      • setOverrideIncludeSynonymsDefault

        public void setOverrideIncludeSynonymsDefault​(boolean override)
        Specify whether the default for including synonyms should be changed. The default is false.
      • compile

        public final void compile()
                           throws InvalidDataAccessApiUsageException
        Compile this JdbcInsert using provided parameters and meta-data plus other settings. This finalizes the configuration for this object and subsequent attempts to compile are ignored. This will be implicitly called the first time an un-compiled insert is executed.
        抛出:
        InvalidDataAccessApiUsageException - if the object hasn't been correctly initialized, for example if no DataSource has been provided
      • compileInternal

        protected void compileInternal()
        Delegate method to perform the actual compilation.

        Subclasses can override this template method to perform their own compilation. Invoked after this base class's compilation is complete.

      • onCompileInternal

        protected void onCompileInternal()
        Hook method that subclasses may override to react to compilation.

        This implementation is empty.

      • isCompiled

        public boolean isCompiled()
        Is this operation "compiled"?
        返回:
        whether this operation is compiled and ready to use
      • checkCompiled

        protected void checkCompiled()
        Check whether this operation has been compiled already; lazily compile it if not already compiled.

        Automatically called by validateParameters.

      • checkIfConfigurationModificationIsAllowed

        protected void checkIfConfigurationModificationIsAllowed()
        Method to check whether we are allowed to make any configuration changes at this time. If the class has been compiled, then no further changes to the configuration are allowed.
      • doExecute

        protected int doExecute​(Map<String,​?> args)
        Delegate method that executes the insert using the passed-in Map of parameters.
        参数:
        args - a Map with parameter names and values to be used in insert
        返回:
        the number of rows affected
      • doExecute

        protected int doExecute​(SqlParameterSource parameterSource)
        Delegate method that executes the insert using the passed-in SqlParameterSource.
        参数:
        parameterSource - parameter names and values to be used in insert
        返回:
        the number of rows affected
      • doExecuteAndReturnKey

        protected Number doExecuteAndReturnKey​(Map<String,​?> args)
        Method that provides execution of the insert using the passed-in Map of parameters and returning a generated key.
        参数:
        args - a Map with parameter names and values to be used in insert
        返回:
        the key generated by the insert
      • doExecuteAndReturnKey

        protected Number doExecuteAndReturnKey​(SqlParameterSource parameterSource)
        Method that provides execution of the insert using the passed-in SqlParameterSource and returning a generated key.
        参数:
        parameterSource - parameter names and values to be used in insert
        返回:
        the key generated by the insert
      • doExecuteAndReturnKeyHolder

        protected KeyHolder doExecuteAndReturnKeyHolder​(Map<String,​?> args)
        Method that provides execution of the insert using the passed-in Map of parameters and returning all generated keys.
        参数:
        args - a Map with parameter names and values to be used in insert
        返回:
        the KeyHolder containing keys generated by the insert
      • doExecuteAndReturnKeyHolder

        protected KeyHolder doExecuteAndReturnKeyHolder​(SqlParameterSource parameterSource)
        Method that provides execution of the insert using the passed-in SqlParameterSource and returning all generated keys.
        参数:
        parameterSource - parameter names and values to be used in insert
        返回:
        the KeyHolder containing keys generated by the insert
      • doExecuteBatch

        protected int[] doExecuteBatch​(Map<String,​?>... batch)
        Delegate method that executes a batch insert using the passed-in Maps of parameters.
        参数:
        batch - array of Maps with parameter names and values to be used in batch insert
        返回:
        array of number of rows affected
      • doExecuteBatch

        protected int[] doExecuteBatch​(SqlParameterSource... batch)
        Delegate method that executes a batch insert using the passed-in SqlParameterSources.
        参数:
        batch - array of SqlParameterSource with parameter names and values to be used in insert
        返回:
        array of number of rows affected
      • matchInParameterValuesWithInsertColumns

        protected List<ObjectmatchInParameterValuesWithInsertColumns​(Map<String,​?> args)
        Match the provided in parameter values with registered parameters and parameters defined via meta-data processing.
        参数:
        args - the parameter values provided in a Map
        返回:
        a Map with parameter names and values