Spring Boot - Caching
Why does this caching setup fail?
@EnableCaching
@Configuration
public class CacheConfig {
@Cacheable("items")
public List getItems() { return List.of("a", "b"); }
} 