Spring Boot - Caching
Identify the error in this cache configuration snippet:
@Cacheable(cacheName = "products")
public Product getProduct(int id) {
return productRepo.findById(id);
}