gpt4 book ai didi

没有参数的Spring 3.1缓存抽象

转载 作者:行者123 更新时间:2023-12-04 03:53:41 25 4
gpt4 key购买 nike

在阅读有关Spring 3.1中新的Cache Abstraction的文章时,我想将此功能应用于我的项目。

我可以将调用缓存为没有参数的方法吗?

@Cacheable("xCache")
public List<X> loadAllX() {
...
}

链接的博客文章指出

a cache lookup is performed using as key the method parameters



因此应该不可能缓存此方法,对吗?

简短答案:是,没有任何参数的方法将像其他方法一样被缓存。我想该方法在缓存中将只有一个条目。

最佳答案

您可以使用“Cache SpEL可用元数据”来覆盖此行为,如下所述:

http://static.springsource.org/spring/docs/3.1.x/spring-framework-reference/html/cache.html#cache-spel-context

在您的示例中,您可以指定以下内容:

@Cacheable(value = "xCache", key = "#root.methodName") 
public List<X> loadAllX() {
...
}

哪个将使用键“loadAllX”将X列表缓存在“xCache”中

关于没有参数的Spring 3.1缓存抽象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10612820/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com