Uses of Class
org.springframework.web.servlet.mvc.condition.CompositeRequestCondition
Packages that use CompositeRequestCondition
Package
Description
Common MVC logic for matching incoming requests based on conditions.
-
Uses of CompositeRequestCondition in org.springframework.web.servlet.mvc.condition
Subclasses with type arguments of type CompositeRequestCondition in org.springframework.web.servlet.mvc.conditionModifier and TypeClassDescriptionclassImplements theRequestConditioncontract by delegating to multipleRequestConditiontypes and using a logical conjunction (' && ') to ensure all conditions match a given request.Methods in org.springframework.web.servlet.mvc.condition that return CompositeRequestConditionModifier and TypeMethodDescriptionCompositeRequestCondition.combine(CompositeRequestCondition other) If one instance is empty, return the other.CompositeRequestCondition.getMatchingCondition(jakarta.servlet.http.HttpServletRequest request) Delegate to all contained conditions to match the request and return the resulting "matching" condition instances.Methods in org.springframework.web.servlet.mvc.condition with parameters of type CompositeRequestConditionModifier and TypeMethodDescriptionCompositeRequestCondition.combine(CompositeRequestCondition other) If one instance is empty, return the other.intCompositeRequestCondition.compareTo(CompositeRequestCondition other, jakarta.servlet.http.HttpServletRequest request) If one instance is empty, the other "wins".