Spring Boot - Caching
Identify the error in the following Spring Boot configuration that prevents caching from working:
@Configuration
public class CacheConfig {
@Bean
public CacheManager cacheManager() {
return new ConcurrentMapCacheManager("items");
}
}