Spring Boot - Caching
Which of the following is the correct way to use
@CacheEvict to clear a cache named "users" after a method executes?@CacheEvict to clear a cache named "users" after a method executes?cacheNames or value. To clear all entries, use allEntries = true.@CacheEvict(cacheNames = "users", allEntries = true), which is valid syntax.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions