Uses of Interface
org.apache.ibatis.executor.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
Modifier and TypeClassDescriptionclass
class
class
class
class
Modifier and TypeMethodDescriptionvoid
BaseExecutor.setExecutorWrapper
(Executor wrapper) void
CachingExecutor.setExecutorWrapper
(Executor executor) void
Executor.setExecutorWrapper
(Executor executor) -
Uses of Executor in org.apache.ibatis.executor.keygen
Modifier 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
ModifierConstructorDescriptionResultLoader
(Configuration config, Executor executor, MappedStatement mappedStatement, Object parameterObject, Class<?> targetType, CacheKey cacheKey, BoundSql boundSql) -
Uses of Executor in org.apache.ibatis.executor.resultset
ModifierConstructorDescriptionDefaultResultSetHandler
(Executor executor, MappedStatement mappedStatement, ParameterHandler parameterHandler, ResultHandler<?> resultHandler, BoundSql boundSql, RowBounds rowBounds) -
Uses of Executor in org.apache.ibatis.executor.statement
ModifierConstructorDescriptionprotected
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
Modifier and TypeMethodDescriptionConfiguration.newExecutor
(Transaction transaction) Configuration.newExecutor
(Transaction transaction, ExecutorType executorType) Modifier 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
ModifierConstructorDescriptionDefaultSqlSession
(Configuration configuration, Executor executor) DefaultSqlSession
(Configuration configuration, Executor executor, boolean autoCommit)