Example usage for org.springframework.util AntPathMatcher DEFAULT_PATH_SEPARATOR

List of usage examples for org.springframework.util AntPathMatcher DEFAULT_PATH_SEPARATOR

Introduction

In this page you can find the example usage for org.springframework.util AntPathMatcher DEFAULT_PATH_SEPARATOR.

Prototype

String DEFAULT_PATH_SEPARATOR

To view the source code for org.springframework.util AntPathMatcher DEFAULT_PATH_SEPARATOR.

Click Source Link

Document

Default path separator: "/".

Usage

From source file:com.jaxio.celerio.configuration.Pattern.java

private String plateformIndependant(String value) {
    return value.replace(File.separator, AntPathMatcher.DEFAULT_PATH_SEPARATOR);
}