2

如何使以下工作: - 具有应使用 @Cacheable 注释缓存的方法的 spring bean - 为缓存创建键的另一个 spring bean (KeyCreatorBean)。

所以代码看起来像这样。

@Inject
private KeyCreatorBean keyCreatorBean;

@Cacheable(value = "cacheName", key = "{@keyCreatorBean.createKey, #p0}")
@Override
public List<Examples> getExamples(ExampleId exampleId) {
  ...

但是上面的代码不起作用:它给出了以下异常:

Caused by: org.springframework.expression.spel.SpelEvaluationException: 
    EL1057E:(pos 2): No bean resolver registered in the context to resolve access to bean 'keyCreatorBean'
4

2 回答 2

2

我检查了底层缓存解析实现,似乎没有一种简单的方法可以注入BeanResolver解析 bean 和评估表达式(如@beanname.method.

因此,我还会推荐一种类似于@micfra 推荐的方法。

按照他所说的,按照这些思路有一个 KeyCreatorBean,但在内部将它委托给您在应用程序中注册的 keycreatorBean:

package pkg.beans;

import org.springframework.stereotype.Repository;

public class KeyCreatorBean  implements ApplicationContextAware{
    private static ApplicationContext aCtx;
    public void setApplicationContext(ApplicationContext aCtx){
        KeyCreatorBean.aCtx = aCtx;
    }


    public static Object createKey(Object target, Method method, Object... params) {
        //store the bean somewhere..showing it like this purely to demonstrate..
        return aCtx.getBean("keyCreatorBean").createKey(target, method, params);
    }

}
于 2012-07-10T11:31:02.173 回答
0

如果您有一个静态类函数,它将像这样工作

@Cacheable(value = "cacheName", key = "T(pkg.beans.KeyCreatorBean).createKey(#p0)")
@Override
public List<Examples> getExamples(ExampleId exampleId) {
  ...
}

package pkg.beans;

import org.springframework.stereotype.Repository;

public class KeyCreatorBean  {

    public static Object createKey(Object o) {
        return Integer.valueOf((o != null) ? o.hashCode() : 53);
    }

}
于 2012-07-09T22:17:07.470 回答