我正在尝试在我的 spring 应用程序中使用 google guava 缓存,但结果永远不会缓存。
这是我的步骤:
在conf文件中:
@EnableCaching
@Configuration
public class myConfiguration {
@Bean(name = "CacheManager")
public CacheManager cacheManager() {
return new GuavaCacheManager("MyCache");
}
}
在课堂上我想使用缓存:
public class MyClass extends MyBaseClass {
@Cacheable(value = "MyCache")
public Integer get(String key) {
System.out.println("cache not working");
return 1;
}
}
然后当我打电话时:
MyClass m = new MyClass();
m.get("testKey");
m.get("testKey");
m.get("testKey");
它每次都进入函数而不使用缓存:控制台:
cache not working
cache not working
cache not working
有人知道我错过了什么或者我该如何调试?