Package | Description |
---|---|
org.apache.ibatis.cache |
Base package for caching stuff
|
org.apache.ibatis.executor |
Contains the statement executors.
|
org.apache.ibatis.executor.loader |
Base package for loading results into beans
|
Modifier and Type | Class and Description |
---|---|
class |
NullCacheKey |
Modifier and Type | Field and Description |
---|---|
static CacheKey |
CacheKey.NULL_CACHE_KEY |
Modifier and Type | Method and Description |
---|---|
CacheKey |
CacheKey.clone() |
Modifier and Type | Method and Description |
---|---|
Object |
TransactionalCacheManager.getObject(Cache cache,
CacheKey key) |
void |
TransactionalCacheManager.putObject(Cache cache,
CacheKey key,
Object value) |
Modifier and Type | Method and Description |
---|---|
CacheKey |
Executor.createCacheKey(MappedStatement ms,
Object parameterObject,
RowBounds rowBounds,
BoundSql boundSql) |
CacheKey |
CachingExecutor.createCacheKey(MappedStatement ms,
Object parameterObject,
RowBounds rowBounds,
BoundSql boundSql) |
CacheKey |
BaseExecutor.createCacheKey(MappedStatement ms,
Object parameterObject,
RowBounds rowBounds,
BoundSql boundSql) |
Modifier and Type | Method and Description |
---|---|
void |
Executor.deferLoad(MappedStatement ms,
MetaObject resultObject,
String property,
CacheKey key,
Class<?> targetType) |
void |
CachingExecutor.deferLoad(MappedStatement ms,
MetaObject resultObject,
String property,
CacheKey key,
Class<?> targetType) |
void |
BaseExecutor.deferLoad(MappedStatement ms,
MetaObject resultObject,
String property,
CacheKey key,
Class<?> targetType) |
boolean |
Executor.isCached(MappedStatement ms,
CacheKey key) |
boolean |
CachingExecutor.isCached(MappedStatement ms,
CacheKey key) |
boolean |
BaseExecutor.isCached(MappedStatement ms,
CacheKey key) |
<E> List<E> |
Executor.query(MappedStatement ms,
Object parameter,
RowBounds rowBounds,
ResultHandler resultHandler,
CacheKey cacheKey,
BoundSql boundSql) |
<E> List<E> |
CachingExecutor.query(MappedStatement ms,
Object parameterObject,
RowBounds rowBounds,
ResultHandler resultHandler,
CacheKey key,
BoundSql boundSql) |
<E> List<E> |
BaseExecutor.query(MappedStatement ms,
Object parameter,
RowBounds rowBounds,
ResultHandler resultHandler,
CacheKey key,
BoundSql boundSql) |
Modifier and Type | Field and Description |
---|---|
protected CacheKey |
ResultLoader.cacheKey |
Constructor and Description |
---|
ResultLoader(Configuration config,
Executor executor,
MappedStatement mappedStatement,
Object parameterObject,
Class<?> targetType,
CacheKey cacheKey,
BoundSql boundSql) |
Copyright © 2010–2015 MyBatis.org. All rights reserved.