當前位置: 首頁>>代碼示例>>Java>>正文


Java Cache.ValueWrapper方法代碼示例

本文整理匯總了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;
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:20,代碼來源:CacheAspectSupport.java

示例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;
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:10,代碼來源:CacheAspectSupport.java

示例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();
    }
 
開發者ID:fdlessard,項目名稱:SpringBootLogExecutionTime,代碼行數:11,代碼來源:CacheableCustomerServiceImpl.java

示例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();
}
 
開發者ID:monkeyk,項目名稱:oauth2-shiro-redis,代碼行數:12,代碼來源:AbstractCacheSupport.java

示例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();
}
 
開發者ID:cwenao,項目名稱:springboot_cwenao,代碼行數:11,代碼來源:AbstractCacheSupport.java


注:本文中的org.springframework.cache.Cache.ValueWrapper方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。