Spring Boot - Caching
Identify the error in this Spring Boot configuration:
@Configuration
public class CacheConfig {
@Cacheable
public String getData() { return "data"; }
}