Class RequestMatchResult
java.lang.Object
org.springframework.web.servlet.handler.RequestMatchResult
Deprecated, for removal: This API element is subject to removal in a future version.
Container for the result from request pattern matching via
 
MatchableHandlerMapping with a method to further extract
 URI template variables from the pattern.- Since:
- 4.3.1
- Author:
- Rossen Stoyanchev
- 
Constructor SummaryConstructorsConstructorDescriptionRequestMatchResult(String pattern, String lookupPath, PathMatcher pathMatcher) Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.RequestMatchResult(PathPattern pathPattern, PathContainer lookupPath) Deprecated, for removal: This API element is subject to removal in a future version.Create an instance with the matchedPathPattern.
- 
Method SummaryModifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Extract URI template variables from the matching pattern as defined inPathPattern.matchAndExtract(PathContainer).
- 
Constructor Details- 
RequestMatchResultDeprecated, for removal: This API element is subject to removal in a future version.Create an instance with the matchedPathPattern.- Parameters:
- pathPattern- the pattern that was matched
- lookupPath- the mapping path
- Since:
- 5.3
 
- 
RequestMatchResult@Deprecated(since="7.0", forRemoval=true) public RequestMatchResult(String pattern, String lookupPath, PathMatcher pathMatcher) Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.Create an instance with the matched String pattern.- Parameters:
- pattern- the pattern that was matched, possibly with a '/' appended
- lookupPath- the mapping path
- pathMatcher- the PathMatcher instance used for the match
 
 
- 
- 
Method Details- 
extractUriTemplateVariablesDeprecated, for removal: This API element is subject to removal in a future version.Extract URI template variables from the matching pattern as defined inPathPattern.matchAndExtract(PathContainer).- Returns:
- a map with URI template variables
 
 
- 
HandlerMappingIntrospectorwithout a replacement.