Uses of Class
org.apache.ibatis.cache.CacheKey
-
Packages that use CacheKey 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.org.apache.ibatis.executor.resultset Contains the result processing logic. -
-
Uses of CacheKey in org.apache.ibatis.cache
Subclasses of CacheKey in org.apache.ibatis.cache Modifier and Type Class Description classNullCacheKeyDeprecated.Since 3.5.3, This class never used and will be removed future version.Fields in org.apache.ibatis.cache declared as CacheKey Modifier and Type Field Description static CacheKeyCacheKey. NULL_CACHE_KEYMethods in org.apache.ibatis.cache that return CacheKey Modifier and Type Method Description CacheKeyCacheKey. clone()Methods in org.apache.ibatis.cache with parameters of type CacheKey Modifier and Type Method Description java.lang.ObjectTransactionalCacheManager. getObject(Cache cache, CacheKey key)voidTransactionalCacheManager. putObject(Cache cache, CacheKey key, java.lang.Object value) -
Uses of CacheKey in org.apache.ibatis.executor
Fields in org.apache.ibatis.executor declared as CacheKey Modifier and Type Field Description private CacheKeyBaseExecutor.DeferredLoad. keyMethods in org.apache.ibatis.executor that return CacheKey Modifier and Type Method Description CacheKeyBaseExecutor. createCacheKey(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, BoundSql boundSql)CacheKeyCachingExecutor. createCacheKey(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, BoundSql boundSql)CacheKeyExecutor. createCacheKey(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, BoundSql boundSql)Methods in org.apache.ibatis.executor with parameters of type CacheKey Modifier and Type Method Description voidBaseExecutor. deferLoad(MappedStatement ms, MetaObject resultObject, java.lang.String property, CacheKey key, java.lang.Class<?> targetType)voidCachingExecutor. deferLoad(MappedStatement ms, MetaObject resultObject, java.lang.String property, CacheKey key, java.lang.Class<?> targetType)voidExecutor. deferLoad(MappedStatement ms, MetaObject resultObject, java.lang.String property, CacheKey key, java.lang.Class<?> targetType)private voidBaseExecutor. handleLocallyCachedOutputParameters(MappedStatement ms, CacheKey key, java.lang.Object parameter, BoundSql boundSql)booleanBaseExecutor. isCached(MappedStatement ms, CacheKey key)booleanCachingExecutor. isCached(MappedStatement ms, CacheKey key)booleanExecutor. isCached(MappedStatement ms, CacheKey key)<E> java.util.List<E>BaseExecutor. query(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)<E> java.util.List<E>CachingExecutor. query(MappedStatement ms, java.lang.Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)<E> java.util.List<E>Executor. query(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey cacheKey, BoundSql boundSql)private <E> java.util.List<E>BaseExecutor. queryFromDatabase(MappedStatement ms, java.lang.Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)Constructors in org.apache.ibatis.executor with parameters of type CacheKey Constructor Description DeferredLoad(MetaObject resultObject, java.lang.String property, CacheKey key, PerpetualCache localCache, Configuration configuration, java.lang.Class<?> targetType) -
Uses of CacheKey in org.apache.ibatis.executor.loader
Fields in org.apache.ibatis.executor.loader declared as CacheKey Modifier and Type Field Description protected CacheKeyResultLoader. cacheKeyConstructors in org.apache.ibatis.executor.loader with parameters of type CacheKey Constructor Description ResultLoader(Configuration config, Executor executor, MappedStatement mappedStatement, java.lang.Object parameterObject, java.lang.Class<?> targetType, CacheKey cacheKey, BoundSql boundSql) -
Uses of CacheKey in org.apache.ibatis.executor.resultset
Fields in org.apache.ibatis.executor.resultset with type parameters of type CacheKey Modifier and Type Field Description private java.util.Map<CacheKey,java.lang.Object>DefaultResultSetHandler. nestedResultObjectsprivate java.util.Map<CacheKey,java.util.List<DefaultResultSetHandler.PendingRelation>>DefaultResultSetHandler. pendingRelationsMethods in org.apache.ibatis.executor.resultset that return CacheKey Modifier and Type Method Description private CacheKeyDefaultResultSetHandler. combineKeys(CacheKey rowKey, CacheKey parentRowKey)private CacheKeyDefaultResultSetHandler. createKeyForMultipleResults(java.sql.ResultSet rs, ResultMapping resultMapping, java.lang.String names, java.lang.String columns)private CacheKeyDefaultResultSetHandler. createRowKey(ResultMap resultMap, ResultSetWrapper rsw, java.lang.String columnPrefix)Methods in org.apache.ibatis.executor.resultset with parameters of type CacheKey Modifier and Type Method Description private booleanDefaultResultSetHandler. applyNestedResultMappings(ResultSetWrapper rsw, ResultMap resultMap, MetaObject metaObject, java.lang.String parentPrefix, CacheKey parentRowKey, boolean newObject)private CacheKeyDefaultResultSetHandler. combineKeys(CacheKey rowKey, CacheKey parentRowKey)private voidDefaultResultSetHandler. createRowKeyForMap(ResultSetWrapper rsw, CacheKey cacheKey)private voidDefaultResultSetHandler. createRowKeyForMappedProperties(ResultMap resultMap, ResultSetWrapper rsw, CacheKey cacheKey, java.util.List<ResultMapping> resultMappings, java.lang.String columnPrefix)private voidDefaultResultSetHandler. createRowKeyForUnmappedProperties(ResultMap resultMap, ResultSetWrapper rsw, CacheKey cacheKey, java.lang.String columnPrefix)private java.lang.ObjectDefaultResultSetHandler. getRowValue(ResultSetWrapper rsw, ResultMap resultMap, CacheKey combinedKey, java.lang.String columnPrefix, java.lang.Object partialObject)
-