diff --git a/spring-context/src/main/java/org/springframework/cache/annotation/EnableCaching.java b/spring-context/src/main/java/org/springframework/cache/annotation/EnableCaching.java index 6e8147fe70..0ec602b9ea 100644 --- a/spring-context/src/main/java/org/springframework/cache/annotation/EnableCaching.java +++ b/spring-context/src/main/java/org/springframework/cache/annotation/EnableCaching.java @@ -47,7 +47,7 @@ import org.springframework.core.Ordered; * public CacheManager cacheManager() { * // configure and return an implementation of Spring's CacheManager SPI * SimpleCacheManager cacheManager = new SimpleCacheManager(); - * cacheManager.addCaches(Arrays.asList(new ConcurrentMapCache("default"))); + * cacheManager.setCaches(Arrays.asList(new ConcurrentMapCache("default"))); * return cacheManager; * } * } @@ -117,7 +117,7 @@ import org.springframework.core.Ordered; * public CacheManager cacheManager() { * // configure and return an implementation of Spring's CacheManager SPI * SimpleCacheManager cacheManager = new SimpleCacheManager(); - * cacheManager.addCaches(Arrays.asList(new ConcurrentMapCache("default"))); + * cacheManager.setCaches(Arrays.asList(new ConcurrentMapCache("default"))); * return cacheManager; * } *