Example usage for org.springframework.util PathMatcher interface-usage

List of usage examples for org.springframework.util PathMatcher interface-usage

Introduction

In this page you can find the example usage for org.springframework.util PathMatcher interface-usage.

Usage

From source file org.openmrs.module.webservices.rest.OpenmrsPathMatcher.java

public class OpenmrsPathMatcher implements PathMatcher {

    private final AntPathMatcher delegate = new AntPathMatcher();

    @Override
    public boolean isPattern(String path) {

From source file carbonfive.spring.web.pathparameter.ParameterizedPathMatcher.java

/**
 * Replaces Spring's AntPathMatcher, adding the capacity to recognize parameters with the path.
 * <br />
 * The ParameterizedPathMather should return the same result as AntPathMatcher when given any pattern and URL
 * that AntPathMatcher supports.  See {@link carbonfive.spring.web.pathparameter.ParameterizedUrlHandlerMapping}
 * for details on how to specify parameterized path patterns.

From source file org.springframework.cloud.bus.DefaultBusPathMatcher.java

/**
 * {@link BusPathMatcher} that matches application context ids with multiple, comma-separated, profiles.
 * Original https://gist.github.com/kelapure/61d3f948acf478cc95225ff1d7d239c4
 *
 * See https://github.com/spring-cloud/spring-cloud-config/issues/678
 *