Spring Boot - Caching
How can you combine
@Cacheable with a condition to cache only results where the returned value is not null?@Cacheable with a condition to cache only results where the returned value is not null?unless and condition attributescondition controls if caching happens before method call; unless prevents caching after method call based on result.
To skip caching when result is null, use unless = "#result == null". @Cacheable(cacheNames = "data", unless = "#result == null") matches this. Others are incorrect logic.
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions