@Cacheable doesn't intercept the method, cache is always empty
问题 I have a method as following: @Cacheable(value = "SAMPLE") public List<SomeObj> find() { // Method that initiates and returns the List<SomeObj> and takes around 2-3 seconds, does some logging too } And I am enabling caching in one of my configuration classes: @EnableCaching @Configuration public SomeConf extends CachingConfigurerSupport { // Here I also initialize my classes with @Cacheable annotation @Bean @Override public CacheManager cacheManager() { SimpleCacheManager cacheManager = new