Class ProviderSqlSource

java.lang.Object
org.apache.ibatis.builder.annotation.ProviderSqlSource
All Implemented Interfaces:
SqlSource

public class ProviderSqlSource
extends Object
implements SqlSource
Author:
Clinton Begin, Kazuki Shimizu
  • Constructor Details

    • ProviderSqlSource

      @Deprecated public ProviderSqlSource​(Configuration configuration, Object provider)
      Deprecated.
      Since 3.5.3, Please use the ProviderSqlSource(Configuration, Annotation, Class, Method) instead of this.
      This constructor will remove at a future version.
      Parameters:
      configuration - the configuration
      provider - the provider
    • ProviderSqlSource

      @Deprecated public ProviderSqlSource​(Configuration configuration, Object provider, Class<?> mapperType, Method mapperMethod)
      Deprecated.
      Since 3.5.3, Please use the ProviderSqlSource(Configuration, Annotation, Class, Method) instead of this.
      This constructor will remove at a future version.
      Parameters:
      configuration - the configuration
      provider - the provider
      mapperType - the mapper type
      mapperMethod - the mapper method
      Since:
      3.4.5
    • ProviderSqlSource

      public ProviderSqlSource​(Configuration configuration, Annotation provider, Class<?> mapperType, Method mapperMethod)
      Instantiates a new provider sql source.
      Parameters:
      configuration - the configuration
      provider - the provider
      mapperType - the mapper type
      mapperMethod - the mapper method
      Since:
      3.5.3
  • Method Details