本文整理匯總了Java中org.springframework.cache.Cache.ValueWrapper方法的典型用法代碼示例。如果您正苦於以下問題:Java Cache.ValueWrapper方法的具體用法?Java Cache.ValueWrapper怎麽用?Java Cache.ValueWrapper使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.springframework.cache.Cache
的用法示例。
在下文中一共展示了Cache.ValueWrapper方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: findCachedItem
import org.springframework.cache.Cache; //導入方法依賴的package包/類
/**
* Find a cached item only for {@link CacheableOperation} that passes the condition.
* @param contexts the cacheable operations
* @return a {@link Cache.ValueWrapper} holding the cached item,
* or {@code null} if none is found
*/
private Cache.ValueWrapper findCachedItem(Collection<CacheOperationContext> contexts) {
Object result = ExpressionEvaluator.NO_RESULT;
for (CacheOperationContext context : contexts) {
if (isConditionPassing(context, result)) {
Object key = generateKey(context, result);
Cache.ValueWrapper cached = findInCaches(context, key);
if (cached != null) {
return cached;
}
}
}
return null;
}
示例2: findInCaches
import org.springframework.cache.Cache; //導入方法依賴的package包/類
private Cache.ValueWrapper findInCaches(CacheOperationContext context, Object key) {
for (Cache cache : context.getCaches()) {
Cache.ValueWrapper wrapper = cache.get(key);
if (wrapper != null) {
return wrapper;
}
}
return null;
}
示例3: getCachedCustomerById
import org.springframework.cache.Cache; //導入方法依賴的package包/類
private Customer getCachedCustomerById(Cache cache, long id) {
Cache.ValueWrapper valueWrapper = cache.get(id);
if (valueWrapper == null) {
return null;
}
return (Customer) valueWrapper.get();
}
示例4: getFromCache
import org.springframework.cache.Cache; //導入方法依賴的package包/類
/**
* 從指定的緩存中獲取緩存數據
*
* @param cache Cache
* @param key Cache key
* @return Cache value
*/
protected Object getFromCache(Cache cache, String key) {
final Cache.ValueWrapper valueWrapper = cache.get(key);
return valueWrapper == null ? null : valueWrapper.get();
}
示例5: getFromCache
import org.springframework.cache.Cache; //導入方法依賴的package包/類
/**
* 獲取緩存內容
* @param cache
* @param key
* @return
*/
protected Object getFromCache(Cache cache, String key) {
final Cache.ValueWrapper valueWrapper = cache.get(key);
return null == valueWrapper ? null : valueWrapper.get();
}