Uses of Interface
org.apache.ibatis.executor.Executor
-
Packages that use Executor Package Description org.apache.ibatis.executor Contains the statement executors.org.apache.ibatis.executor.keygen Contains the key generators.org.apache.ibatis.executor.loader Base package for loading results into beans.org.apache.ibatis.executor.resultset Contains the result processing logic.org.apache.ibatis.executor.statement Statement handlers.org.apache.ibatis.session Base package.org.apache.ibatis.session.defaults Default impl for SqlSession. -
-
Uses of Executor in org.apache.ibatis.executor
Classes in org.apache.ibatis.executor that implement Executor Modifier and Type Class Description classBaseExecutorclassBatchExecutorclassCachingExecutorclassReuseExecutorclassSimpleExecutorFields in org.apache.ibatis.executor declared as Executor Modifier and Type Field Description private ExecutorCachingExecutor. delegateprotected ExecutorBaseExecutor. wrapperMethods in org.apache.ibatis.executor with parameters of type Executor Modifier and Type Method Description voidBaseExecutor. setExecutorWrapper(Executor wrapper)voidCachingExecutor. setExecutorWrapper(Executor executor)voidExecutor. setExecutorWrapper(Executor executor)Constructors in org.apache.ibatis.executor with parameters of type Executor Constructor Description CachingExecutor(Executor delegate) -
Uses of Executor in org.apache.ibatis.executor.keygen
Methods in org.apache.ibatis.executor.keygen with parameters of type Executor Modifier and Type Method Description voidJdbc3KeyGenerator. processAfter(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)voidKeyGenerator. processAfter(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)voidNoKeyGenerator. processAfter(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)voidSelectKeyGenerator. processAfter(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)voidJdbc3KeyGenerator. processBefore(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)voidKeyGenerator. processBefore(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)voidNoKeyGenerator. processBefore(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)voidSelectKeyGenerator. processBefore(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)private voidSelectKeyGenerator. processGeneratedKeys(Executor executor, MappedStatement ms, java.lang.Object parameter) -
Uses of Executor in org.apache.ibatis.executor.loader
Classes in org.apache.ibatis.executor.loader that implement Executor Modifier and Type Class Description private static classResultLoaderMap.ClosedExecutorFields in org.apache.ibatis.executor.loader declared as Executor Modifier and Type Field Description protected ExecutorResultLoader. executorMethods in org.apache.ibatis.executor.loader that return Executor Modifier and Type Method Description private ExecutorResultLoader. newExecutor()Constructors in org.apache.ibatis.executor.loader with parameters of type Executor Constructor Description ResultLoader(Configuration config, Executor executor, MappedStatement mappedStatement, java.lang.Object parameterObject, java.lang.Class<?> targetType, CacheKey cacheKey, BoundSql boundSql) -
Uses of Executor in org.apache.ibatis.executor.resultset
Fields in org.apache.ibatis.executor.resultset declared as Executor Modifier and Type Field Description private ExecutorDefaultResultSetHandler. executorConstructors in org.apache.ibatis.executor.resultset with parameters of type Executor Constructor Description DefaultResultSetHandler(Executor executor, MappedStatement mappedStatement, ParameterHandler parameterHandler, ResultHandler<?> resultHandler, BoundSql boundSql, RowBounds rowBounds) -
Uses of Executor in org.apache.ibatis.executor.statement
Fields in org.apache.ibatis.executor.statement declared as Executor Modifier and Type Field Description protected ExecutorBaseStatementHandler. executorConstructors in org.apache.ibatis.executor.statement with parameters of type Executor Constructor Description BaseStatementHandler(Executor executor, MappedStatement mappedStatement, java.lang.Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)CallableStatementHandler(Executor executor, MappedStatement mappedStatement, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)PreparedStatementHandler(Executor executor, MappedStatement mappedStatement, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)RoutingStatementHandler(Executor executor, MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)SimpleStatementHandler(Executor executor, MappedStatement mappedStatement, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) -
Uses of Executor in org.apache.ibatis.session
Methods in org.apache.ibatis.session that return Executor Modifier and Type Method Description ExecutorConfiguration. newExecutor(Transaction transaction)ExecutorConfiguration. newExecutor(Transaction transaction, ExecutorType executorType)Methods in org.apache.ibatis.session with parameters of type Executor Modifier and Type Method Description ResultSetHandlerConfiguration. newResultSetHandler(Executor executor, MappedStatement mappedStatement, RowBounds rowBounds, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql)StatementHandlerConfiguration. newStatementHandler(Executor executor, MappedStatement mappedStatement, java.lang.Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) -
Uses of Executor in org.apache.ibatis.session.defaults
Fields in org.apache.ibatis.session.defaults declared as Executor Modifier and Type Field Description private ExecutorDefaultSqlSession. executorMethods in org.apache.ibatis.session.defaults with parameters of type Executor Modifier and Type Method Description protected SqlSessionDefaultSqlSessionFactory. createSqlSession(Configuration configuration, Executor executor, boolean autoCommit)Constructors in org.apache.ibatis.session.defaults with parameters of type Executor Constructor Description DefaultSqlSession(Configuration configuration, Executor executor)DefaultSqlSession(Configuration configuration, Executor executor, boolean autoCommit)
-