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 generatorsorg.apache.ibatis.executor.loader Base package for loading results into beansorg.apache.ibatis.executor.resultset Contains the result processing logicorg.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 class
BaseExecutor
class
BatchExecutor
class
CachingExecutor
class
ReuseExecutor
class
SimpleExecutor
Fields in org.apache.ibatis.executor declared as Executor Modifier and Type Field Description protected Executor
BaseExecutor. wrapper
Methods in org.apache.ibatis.executor with parameters of type Executor Modifier and Type Method Description void
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 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 void
Jdbc3KeyGenerator. processAfter(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)
void
KeyGenerator. processAfter(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)
void
NoKeyGenerator. processAfter(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)
void
SelectKeyGenerator. processAfter(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)
void
Jdbc3KeyGenerator. processBefore(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)
void
KeyGenerator. processBefore(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)
void
NoKeyGenerator. processBefore(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)
void
SelectKeyGenerator. processBefore(Executor executor, MappedStatement ms, java.sql.Statement stmt, java.lang.Object parameter)
-
Uses of Executor in org.apache.ibatis.executor.loader
Fields in org.apache.ibatis.executor.loader declared as Executor Modifier and Type Field Description protected Executor
ResultLoader. executor
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
Constructors 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 Executor
BaseStatementHandler. executor
Constructors 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 Executor
Configuration. newExecutor(Transaction transaction)
Executor
Configuration. newExecutor(Transaction transaction, ExecutorType executorType)
Methods in org.apache.ibatis.session with parameters of type Executor Modifier and Type Method Description ResultSetHandler
Configuration. newResultSetHandler(Executor executor, MappedStatement mappedStatement, RowBounds rowBounds, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql)
StatementHandler
Configuration. newStatementHandler(Executor executor, MappedStatement mappedStatement, java.lang.Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
-
Uses of Executor in org.apache.ibatis.session.defaults
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)
-