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.
|
Modifier and Type | Class and Description |
---|---|
class |
BaseExecutor |
class |
BatchExecutor |
class |
CachingExecutor |
class |
ReuseExecutor |
class |
SimpleExecutor |
Modifier and Type | Field and Description |
---|---|
protected Executor |
BaseExecutor.wrapper |
Modifier and Type | Method and Description |
---|---|
void |
Executor.setExecutorWrapper(Executor executor) |
void |
CachingExecutor.setExecutorWrapper(Executor executor) |
void |
BaseExecutor.setExecutorWrapper(Executor wrapper) |
Constructor and Description |
---|
CachingExecutor(Executor delegate) |
Modifier and Type | Method and Description |
---|---|
void |
SelectKeyGenerator.processAfter(Executor executor,
MappedStatement ms,
Statement stmt,
Object parameter) |
void |
NoKeyGenerator.processAfter(Executor executor,
MappedStatement ms,
Statement stmt,
Object parameter) |
void |
KeyGenerator.processAfter(Executor executor,
MappedStatement ms,
Statement stmt,
Object parameter) |
void |
Jdbc3KeyGenerator.processAfter(Executor executor,
MappedStatement ms,
Statement stmt,
Object parameter) |
void |
SelectKeyGenerator.processBefore(Executor executor,
MappedStatement ms,
Statement stmt,
Object parameter) |
void |
NoKeyGenerator.processBefore(Executor executor,
MappedStatement ms,
Statement stmt,
Object parameter) |
void |
KeyGenerator.processBefore(Executor executor,
MappedStatement ms,
Statement stmt,
Object parameter) |
void |
Jdbc3KeyGenerator.processBefore(Executor executor,
MappedStatement ms,
Statement stmt,
Object parameter) |
Modifier and Type | Field and Description |
---|---|
protected Executor |
ResultLoader.executor |
Constructor and Description |
---|
ResultLoader(Configuration config,
Executor executor,
MappedStatement mappedStatement,
Object parameterObject,
Class<?> targetType,
CacheKey cacheKey,
BoundSql boundSql) |
Constructor and Description |
---|
DefaultResultSetHandler(Executor executor,
MappedStatement mappedStatement,
ParameterHandler parameterHandler,
ResultHandler<?> resultHandler,
BoundSql boundSql,
RowBounds rowBounds) |
Modifier and Type | Field and Description |
---|---|
protected Executor |
BaseStatementHandler.executor |
Constructor and Description |
---|
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) |
Modifier and Type | Method and Description |
---|---|
Executor |
Configuration.newExecutor(Transaction transaction) |
Executor |
Configuration.newExecutor(Transaction transaction,
ExecutorType executorType) |
Modifier and Type | Method and Description |
---|---|
ResultSetHandler |
Configuration.newResultSetHandler(Executor executor,
MappedStatement mappedStatement,
RowBounds rowBounds,
ParameterHandler parameterHandler,
ResultHandler resultHandler,
BoundSql boundSql) |
StatementHandler |
Configuration.newStatementHandler(Executor executor,
MappedStatement mappedStatement,
Object parameterObject,
RowBounds rowBounds,
ResultHandler resultHandler,
BoundSql boundSql) |
Constructor and Description |
---|
DefaultSqlSession(Configuration configuration,
Executor executor) |
DefaultSqlSession(Configuration configuration,
Executor executor,
boolean autoCommit) |
Copyright © 2010–2015 MyBatis.org. All rights reserved.