From 8422da4d3f325b288adac6c8c59634c7962643f2 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Fri, 18 Jan 2013 13:50:22 +0100 Subject: [PATCH] Fixed reference to "fallbackToNoOpCache" flag Issue: SPR-9064 --- spring-framework-reference/src/cache.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-framework-reference/src/cache.xml b/spring-framework-reference/src/cache.xml index e48b750c87..36da6304a2 100644 --- a/spring-framework-reference/src/cache.xml +++ b/spring-framework-reference/src/cache.xml @@ -551,10 +551,10 @@ public Book findBook(ISBN isbn, boolean checkWarehouse, boolean includeUsed)]]>< - + ]]> - The CompositeCacheManager above chains multiple CacheManagers and aditionally, through the addNoOpManager flag, adds a + The CompositeCacheManager above chains multiple CacheManagers and aditionally, through the fallbackToNoOpCache flag, adds a no op cache that for all the definitions not handled by the configured cache managers. That is, every cache definition not found in either jdkCache or gemfireCache (configured above) will be handled by the no op cache, which will not store any information causing the target method to be executed every time.