Uses of Class
org.springframework.web.servlet.mvc.condition.PatternsRequestCondition
Packages that use PatternsRequestCondition
Package
Description
Common MVC logic for matching incoming requests based on conditions.
Servlet-based infrastructure for handler method processing,
building on the
org.springframework.web.method package.-
Uses of PatternsRequestCondition in org.springframework.web.servlet.mvc.condition
Methods in org.springframework.web.servlet.mvc.condition that return PatternsRequestConditionModifier and TypeMethodDescriptionPatternsRequestCondition.combine(PatternsRequestCondition other) Deprecated, for removal: This API element is subject to removal in a future version.Combine the patterns of the current and of the other instances as follows: If only one instance has patterns, use those.PatternsRequestCondition.getMatchingCondition(HttpServletRequest request) Deprecated, for removal: This API element is subject to removal in a future version.Checks if any of the patterns match the given request and returns an instance that is guaranteed to contain matching patterns, sorted viaPathMatcher.getPatternComparator(String).Methods in org.springframework.web.servlet.mvc.condition with parameters of type PatternsRequestConditionModifier and TypeMethodDescriptionPatternsRequestCondition.combine(PatternsRequestCondition other) Deprecated, for removal: This API element is subject to removal in a future version.Combine the patterns of the current and of the other instances as follows: If only one instance has patterns, use those.intPatternsRequestCondition.compareTo(PatternsRequestCondition other, HttpServletRequest request) Deprecated, for removal: This API element is subject to removal in a future version.Compare the two conditions based on the URL patterns they contain. -
Uses of PatternsRequestCondition in org.springframework.web.servlet.mvc.method
Methods in org.springframework.web.servlet.mvc.method that return PatternsRequestConditionModifier and TypeMethodDescriptionRequestMappingInfo.getPatternsCondition()Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.springframework.web.servlet.mvc.method with parameters of type PatternsRequestConditionModifierConstructorDescriptionRequestMappingInfo(@Nullable String name, @Nullable PatternsRequestCondition patterns, @Nullable RequestMethodsRequestCondition methods, @Nullable ParamsRequestCondition params, @Nullable HeadersRequestCondition headers, @Nullable ConsumesRequestCondition consumes, @Nullable ProducesRequestCondition produces, @Nullable VersionRequestCondition version, @Nullable RequestCondition<?> custom) Deprecated.as of 5.3 in favor usingRequestMappingInfo.BuilderviaRequestMappingInfo.paths(String...).RequestMappingInfo(@Nullable PatternsRequestCondition patterns, @Nullable RequestMethodsRequestCondition methods, @Nullable ParamsRequestCondition params, @Nullable HeadersRequestCondition headers, @Nullable ConsumesRequestCondition consumes, @Nullable ProducesRequestCondition produces, @Nullable VersionRequestCondition version, @Nullable RequestCondition<?> custom) Deprecated.as of 5.3 in favor usingRequestMappingInfo.BuilderviaRequestMappingInfo.paths(String...).
PathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.