/*
 * Copyright 2002-2017 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.web.util.pattern;

Parser for URI path patterns producing PathPattern instances that can then be matched to requests.

The PathPatternParser and PathPattern are specifically designed for use with HTTP URL paths in web applications where a large number of URI path patterns, continuously matched against incoming requests, motivates the need for efficient matching.

For details of the path pattern syntax see PathPattern.

Author:Andy Clement
Since:5.0
/** * Parser for URI path patterns producing {@link PathPattern} instances that can * then be matched to requests. * * <p>The {@link PathPatternParser} and {@link PathPattern} are specifically * designed for use with HTTP URL paths in web applications where a large number * of URI path patterns, continuously matched against incoming requests, * motivates the need for efficient matching. * * <p>For details of the path pattern syntax see {@link PathPattern}. * * @author Andy Clement * @since 5.0 */
public class PathPatternParser { private boolean matchOptionalTrailingSeparator = true; private boolean caseSensitive = true;
Whether a PathPattern produced by this parser should should automatically match request paths with a trailing slash.

If set to true a PathPattern without a trailing slash will also match request paths with a trailing slash. If set to false a PathPattern will only match request paths with a trailing slash.

The default is true.

/** * Whether a {@link PathPattern} produced by this parser should should * automatically match request paths with a trailing slash. * * <p>If set to {@code true} a {@code PathPattern} without a trailing slash * will also match request paths with a trailing slash. If set to * {@code false} a {@code PathPattern} will only match request paths with * a trailing slash. * * <p>The default is {@code true}. */
public void setMatchOptionalTrailingSeparator(boolean matchOptionalTrailingSeparator) { this.matchOptionalTrailingSeparator = matchOptionalTrailingSeparator; }
Whether optional trailing slashing match is enabled.
/** * Whether optional trailing slashing match is enabled. */
public boolean isMatchOptionalTrailingSeparator() { return this.matchOptionalTrailingSeparator; }
Whether path pattern matching should be case-sensitive.

The default is true.

/** * Whether path pattern matching should be case-sensitive. * <p>The default is {@code true}. */
public void setCaseSensitive(boolean caseSensitive) { this.caseSensitive = caseSensitive; }
Whether case-sensitive pattern matching is enabled.
/** * Whether case-sensitive pattern matching is enabled. */
public boolean isCaseSensitive() { return this.caseSensitive; }
Accessor used for the separator to use.

Currently not exposed for configuration with URI path patterns and mainly for use in InternalPathPatternParser and PathPattern. If required in the future, a similar option would also need to be exposed in PathContainer.

/** * Accessor used for the separator to use. * <p>Currently not exposed for configuration with URI path patterns and * mainly for use in InternalPathPatternParser and PathPattern. If required * in the future, a similar option would also need to be exposed in * {@link org.springframework.http.server.PathContainer PathContainer}. */
char getSeparator() { return '/'; }
Process the path pattern content, a character at a time, breaking it into path elements around separator boundaries and verifying the structure at each stage. Produces a PathPattern object that can be used for fast matching against paths. Each invocation of this method delegates to a new instance of the InternalPathPatternParser because that class is not thread-safe.
Params:
  • pathPattern – the input path pattern, e.g. /foo/{bar}
Throws:
Returns:a PathPattern for quickly matching paths against request paths
/** * Process the path pattern content, a character at a time, breaking it into * path elements around separator boundaries and verifying the structure at each * stage. Produces a PathPattern object that can be used for fast matching * against paths. Each invocation of this method delegates to a new instance of * the {@link InternalPathPatternParser} because that class is not thread-safe. * @param pathPattern the input path pattern, e.g. /foo/{bar} * @return a PathPattern for quickly matching paths against request paths * @throws PatternParseException in case of parse errors */
public PathPattern parse(String pathPattern) throws PatternParseException { return new InternalPathPatternParser(this).parse(pathPattern); } }