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 Summary
ConstructorDescriptionCachingResourceTransformer
(Cache cache) CachingResourceTransformer
(CacheManager cacheManager, String cacheName) -
Method Summary
Modifier and TypeMethodDescriptiongetCache()
Return the configuredCache
.transform
(HttpServletRequest request, Resource resource, ResourceTransformerChain transformerChain) Transform the given resource.
-
Constructor Details
-
CachingResourceTransformer
-
CachingResourceTransformer
-
-
Method Details
-
getCache
Return the configuredCache
. -
transform
public Resource transform(HttpServletRequest request, Resource resource, ResourceTransformerChain transformerChain) throws IOException Description copied from interface:ResourceTransformer
Transform the given resource.- Specified by:
transform
in interfaceResourceTransformer
- Parameters:
request
- the current requestresource
- the resource to transformtransformerChain
- the chain of remaining transformers to delegate to- Returns:
- the transformed resource (never
null
) - Throws:
IOException
- if the transformation fails
-