Uses of Interface
org.apache.ibatis.executor.Executor
Packages that use Executor
Package
Description
Contains the statement executors.
Contains the key generators.
Base package for loading results into beans.
Contains the result processing logic.
Statement handlers.
Base package.
Default impl for SqlSession.
-
Uses of Executor in org.apache.ibatis.executor
Classes in org.apache.ibatis.executor that implement ExecutorModifier and TypeClassDescriptionclass
class
class
class
class
Fields in org.apache.ibatis.executor declared as ExecutorMethods in org.apache.ibatis.executor with parameters of type ExecutorModifier and TypeMethodDescriptionvoid
BaseExecutor.setExecutorWrapper
(Executor wrapper) void
CachingExecutor.setExecutorWrapper
(Executor executor) void
Executor.setExecutorWrapper
(Executor executor) Constructors in org.apache.ibatis.executor with parameters of type Executor -
Uses of Executor in org.apache.ibatis.executor.keygen
Methods in org.apache.ibatis.executor.keygen with parameters of type ExecutorModifier and TypeMethodDescriptionvoid
Jdbc3KeyGenerator.processAfter
(Executor executor, MappedStatement ms, Statement stmt, Object parameter) void
KeyGenerator.processAfter
(Executor executor, MappedStatement ms, Statement stmt, Object parameter) void
NoKeyGenerator.processAfter
(Executor executor, MappedStatement ms, Statement stmt, Object parameter) void
SelectKeyGenerator.processAfter
(Executor executor, MappedStatement ms, Statement stmt, Object parameter) void
Jdbc3KeyGenerator.processBefore
(Executor executor, MappedStatement ms, Statement stmt, Object parameter) void
KeyGenerator.processBefore
(Executor executor, MappedStatement ms, Statement stmt, Object parameter) void
NoKeyGenerator.processBefore
(Executor executor, MappedStatement ms, Statement stmt, Object parameter) void
SelectKeyGenerator.processBefore
(Executor executor, MappedStatement ms, Statement stmt, Object parameter) -
Uses of Executor in org.apache.ibatis.executor.loader
Fields in org.apache.ibatis.executor.loader declared as ExecutorConstructors in org.apache.ibatis.executor.loader with parameters of type ExecutorModifierConstructorDescriptionResultLoader
(Configuration config, Executor executor, MappedStatement mappedStatement, Object parameterObject, Class<?> targetType, CacheKey cacheKey, BoundSql boundSql) -
Uses of Executor in org.apache.ibatis.executor.resultset
Constructors in org.apache.ibatis.executor.resultset with parameters of type ExecutorModifierConstructorDescriptionDefaultResultSetHandler
(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 ExecutorConstructors in org.apache.ibatis.executor.statement with parameters of type ExecutorModifierConstructorDescriptionprotected
BaseStatementHandler
(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) CallableStatementHandler
(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) PreparedStatementHandler
(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) RoutingStatementHandler
(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) SimpleStatementHandler
(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) -
Uses of Executor in org.apache.ibatis.session
Methods in org.apache.ibatis.session that return ExecutorModifier and TypeMethodDescriptionConfiguration.newExecutor
(Transaction transaction) Configuration.newExecutor
(Transaction transaction, ExecutorType executorType) Methods in org.apache.ibatis.session with parameters of type ExecutorModifier and TypeMethodDescriptionConfiguration.newResultSetHandler
(Executor executor, MappedStatement mappedStatement, RowBounds rowBounds, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql) Configuration.newStatementHandler
(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) -
Uses of Executor in org.apache.ibatis.session.defaults
Methods in org.apache.ibatis.session.defaults with parameters of type ExecutorModifier and TypeMethodDescriptionprotected SqlSession
DefaultSqlSessionFactory.createSqlSession
(Configuration configuration, Executor executor, boolean autoCommit) Constructors in org.apache.ibatis.session.defaults with parameters of type ExecutorModifierConstructorDescriptionDefaultSqlSession
(Configuration configuration, Executor executor) DefaultSqlSession
(Configuration configuration, Executor executor, boolean autoCommit)