本文整理汇总了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();
}