Uses of Interface
org.springframework.web.reactive.resource.ResourceTransformer
Packages that use ResourceTransformer Package Description org.springframework.web.reactive.config Spring WebFlux configuration infrastructure.org.springframework.web.reactive.resource Support classes for serving static resources.Uses of ResourceTransformer in org.springframework.web.reactive.config
Methods in org.springframework.web.reactive.config that return types with arguments of type ResourceTransformer Modifier and Type Method Description protected List<ResourceTransformer>ResourceChainRegistration. getResourceTransformers()Methods in org.springframework.web.reactive.config with parameters of type ResourceTransformer Modifier and Type Method Description ResourceChainRegistrationResourceChainRegistration. addTransformer(ResourceTransformer transformer)Add a resource transformer to the chain.Uses of ResourceTransformer in org.springframework.web.reactive.resource
Classes in org.springframework.web.reactive.resource that implement ResourceTransformer Modifier and Type Class Description classAppCacheManifestTransformerAResourceTransformerHTML5 AppCache manifests.classCachingResourceTransformerAResourceTransformerthat checks aCacheto see if a previously transformed resource exists in the cache and returns it if found, or otherwise delegates to the resolver chain and caches the result.classCssLinkResourceTransformerAResourceTransformerimplementation that modifies links in a CSS file to match the public URL paths that should be exposed to clients (e.g.classResourceTransformerSupportA base class for aResourceTransformerwith an optional helper method for resolving public links within a transformed resource.Methods in org.springframework.web.reactive.resource that return types with arguments of type ResourceTransformer Modifier and Type Method Description List<ResourceTransformer>ResourceWebHandler. getResourceTransformers()Return the list of configured resource transformers.Method parameters in org.springframework.web.reactive.resource with type arguments of type ResourceTransformer Modifier and Type Method Description voidResourceWebHandler. setResourceTransformers(List<ResourceTransformer> resourceTransformers)Configure the list ofResourceTransformersto use.