Spring Boot - Caching
Consider this method annotated with
@CachePut:
@CachePut(value = "orders", key = "#order.id")
public Order updateOrder(Order order) {
// missing return statement
}
What is the problem with this code?