Class ServerWebExchangeMatchers


  • public abstract class ServerWebExchangeMatchers
    extends java.lang.Object
    Provides factory methods for creating common ServerWebExchangeMatcher
    Since:
    5.0
    • Method Detail

      • pathMatchers

        public static ServerWebExchangeMatcher pathMatchers​(org.springframework.http.HttpMethod method,
                                                            java.lang.String... patterns)
        Creates a matcher that matches on the specific method and any of the provided patterns.
        Parameters:
        method - the method to match on. If null, any method will be matched
        patterns - the patterns to match on
        Returns:
        the matcher to use
      • pathMatchers

        public static ServerWebExchangeMatcher pathMatchers​(java.lang.String... patterns)
        Creates a matcher that matches on any of the provided patterns.
        Parameters:
        patterns - the patterns to match on
        Returns:
        the matcher to use
      • matchers

        public static ServerWebExchangeMatcher matchers​(ServerWebExchangeMatcher... matchers)
        Creates a matcher that will match on any of the provided matchers
        Parameters:
        matchers - the matchers to match on
        Returns:
        the matcher to use