Class FixedVersionStrategy
java.lang.Object
org.springframework.web.servlet.resource.AbstractVersionStrategy
org.springframework.web.servlet.resource.FixedVersionStrategy
- All Implemented Interfaces:
- VersionPathStrategy,- 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:
- 4.1
- Author:
- Brian Clozel, Rossen Stoyanchev
- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class org.springframework.web.servlet.resource.AbstractVersionStrategyAbstractVersionStrategy.FileNameVersionPathStrategy, AbstractVersionStrategy.PrefixVersionPathStrategy
- 
Field SummaryFields inherited from class org.springframework.web.servlet.resource.AbstractVersionStrategylogger
- 
Constructor SummaryConstructorsConstructorDescriptionFixedVersionStrategy(String version) Create a new FixedVersionStrategy with the given version string.
- 
Method SummaryModifier and TypeMethodDescriptiongetResourceVersion(Resource resource) Determine the version for the given resource.Methods inherited from class org.springframework.web.servlet.resource.AbstractVersionStrategyaddVersion, extractVersion, getVersionPathStrategy, removeVersion
- 
Constructor Details- 
FixedVersionStrategyCreate a new FixedVersionStrategy with the given version string.- Parameters:
- version- the fixed version string to use
 
 
- 
- 
Method Details- 
getResourceVersionDescription copied from interface:VersionStrategyDetermine the version for the given resource.- Parameters:
- resource- the resource to check
- Returns:
- the version (never null)
 
 
-