80

有没有办法指定如果方法返回 null 值,那么不要将结果缓存在 @Cacheable 注释中这样的方法?

@Cacheable(value="defaultCache", key="#pk")
public Person findPerson(int pk) {
   return getSession.getPerson(pk);
}

更新:这是去年 11 月提交的关于缓存空值的 JIRA 问题,尚未解决: [#SPR-8871] @Cachable 条件应允许引用返回值 - Spring Projects 问题跟踪器

4

3 回答 3

150

万岁,从 Spring 3.2 开始,框架允许使用 Spring SPEL 和unless. 来自围绕 Cacheable 的 java doc 的注释:

http://static.springsource.org/spring/docs/3.2.x/javadoc-api/org/springframework/cache/annotation/Cacheable.html

公共抽象字符串,除非

用于否决方法缓存的 Spring 表达式语言 (SpEL) 属性。

与 condition() 不同,此表达式在方法被调用后进行评估,因此可以引用结果。默认为“”,这意味着缓存永远不会被否决。

重要的方面是unless在调用方法之后进行评估。这是非常有意义的,因为如果密钥已经在缓存中,该方法将永远不会被执行。

因此,在上面的示例中,您只需进行如下注释(#result 可用于测试方法的返回值):

@Cacheable(value="defaultCache", key="#pk", unless="#result == null")
public Person findPerson(int pk) {
   return getSession.getPerson(pk);
}

我想这种情况是由于使用了可插入的缓存实现,例如允许缓存空值的 Ehcache。根据您的用例场景,这可能是可取的,也可能不是可取的。

于 2013-04-02T22:12:42.027 回答
6

更新此答案现在已过时,对于 Spring 3.2 及更高版本,请参阅 Tech Trip 的答案,OP:随时将其标记为已接受。

我不认为这是可能的(即使 Spring 中有条件缓存驱逐可以在方法调用后执行,@CacheEvict参数beforeInvocation设置为 false,这是默认值)检查CacheAspectSupport类表明返回的值之前没有存储在任何地方inspectAfterCacheEvicts(ops.get(EVICT));通话。

protected Object execute(Invoker invoker, Object target, Method method, Object[] args) {
    // check whether aspect is enabled
    // to cope with cases where the AJ is pulled in automatically
    if (!this.initialized) {
        return invoker.invoke();
    }

    // get backing class
    Class<?> targetClass = AopProxyUtils.ultimateTargetClass(target);
    if (targetClass == null && target != null) {
        targetClass = target.getClass();
    }
    final Collection<CacheOperation> cacheOp = getCacheOperationSource().getCacheOperations(method, targetClass);

    // analyze caching information
    if (!CollectionUtils.isEmpty(cacheOp)) {
        Map<String, Collection<CacheOperationContext>> ops = createOperationContext(cacheOp, method, args, target, targetClass);

        // start with evictions
        inspectBeforeCacheEvicts(ops.get(EVICT));

        // follow up with cacheable
        CacheStatus status = inspectCacheables(ops.get(CACHEABLE));

        Object retVal = null;
        Map<CacheOperationContext, Object> updates = inspectCacheUpdates(ops.get(UPDATE));

        if (status != null) {
            if (status.updateRequired) {
                updates.putAll(status.cUpdates);
            }
            // return cached object
            else {
                return status.retVal;
            }
        }

        retVal = invoker.invoke();

        inspectAfterCacheEvicts(ops.get(EVICT));

        if (!updates.isEmpty()) {
            update(updates, retVal);
        }

        return retVal;
    }

    return invoker.invoke();
}
于 2012-08-24T17:52:04.540 回答
4

如果 Spring 注解

@Cacheable(value="defaultCache", key="#pk",unless="#result!=null")

不行,你可以试试:

@CachePut(value="defaultCache", key="#pk",unless="#result==null")

这个对我有用。

于 2017-03-02T02:47:21.850 回答