Class CachingResourceTransformer
java.lang.Object
org.springframework.web.servlet.resource.CachingResourceTransformer
- All Implemented Interfaces:
- ResourceTransformer
A 
ResourceTransformer that checks a
 Cache to see if a previously transformed resource
 exists in the cache and returns it if found, and otherwise delegates to the resolver
 chain and saves the result in the cache.- Since:
- 4.1
- Author:
- Rossen Stoyanchev
- 
Constructor SummaryConstructorsConstructorDescriptionCachingResourceTransformer(Cache cache) CachingResourceTransformer(CacheManager cacheManager, String cacheName) 
- 
Method SummaryModifier and TypeMethodDescriptiongetCache()Return the configuredCache.transform(HttpServletRequest request, Resource resource, ResourceTransformerChain transformerChain) Transform the given resource.
- 
Constructor Details- 
CachingResourceTransformer
- 
CachingResourceTransformer
 
- 
- 
Method Details- 
getCacheReturn the configuredCache.
- 
transformpublic Resource transform(HttpServletRequest request, Resource resource, ResourceTransformerChain transformerChain) throws IOException Description copied from interface:ResourceTransformerTransform the given resource.- Specified by:
- transformin interface- ResourceTransformer
- Parameters:
- request- the current request
- resource- the resource to transform
- transformerChain- the chain of remaining transformers to delegate to
- Returns:
- the transformed resource (never null)
- Throws:
- IOException- if the transformation fails
 
 
-