Class FixedVersionStrategy
java.lang.Object
org.springframework.web.reactive.resource.AbstractPrefixVersionStrategy
org.springframework.web.reactive.resource.FixedVersionStrategy
- All Implemented Interfaces:
VersionStrategy
A
VersionStrategy
that relies on a fixed version applied as a request
path prefix, e.g. reduced SHA, version name, release date, etc.
This is useful for example when ContentVersionStrategy
cannot be
used such as when using JavaScript module loaders which are in charge of
loading the JavaScript resources and need to know their relative paths.
- Since:
- 5.0
- Author:
- Rossen Stoyanchev, Brian Clozel
- See Also:
-
Field Summary
Fields inherited from class org.springframework.web.reactive.resource.AbstractPrefixVersionStrategy
logger
-
Constructor Summary
ConstructorDescriptionFixedVersionStrategy
(String version) Create a new FixedVersionStrategy with the given version string. -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<String>
getResourceVersion
(Resource resource) Determine the version for the given resource.Methods inherited from class org.springframework.web.reactive.resource.AbstractPrefixVersionStrategy
addVersion, extractVersion, removeVersion
-
Constructor Details
-
FixedVersionStrategy
Create a new FixedVersionStrategy with the given version string.- Parameters:
version
- the fixed version string to use
-
-
Method Details
-
getResourceVersion
Description copied from interface:VersionStrategy
Determine the version for the given resource.- Parameters:
resource
- the resource to check- Returns:
- the resource version
-