Spring Boot - Caching
Identify the issue in this method using
@CachePut:
@CachePut(value = "inventory", key = "#item.id")
public void updateInventory(Item item) {
// update logic
}