UNPKG

node-web-mvc

Version:
17 lines (16 loc) 579 B
/** * @module PathMatchConfigurer * @description 路径匹配配置,可配置servlet路径解析,以及资源url解析 */ import PathMatcher from '../util/PathMatcher'; import UrlPathHelper from '../util/UrlPathHelper'; export default class PathMatchConfigurer { private urlPathHelper; private pathMatcher; private defaultUrlPathHelper; private defaultPathMatcher; setUrlPathHelper(helper: UrlPathHelper): void; setPathMatcher(matcher: PathMatcher): void; getPathMatcherOrDefault(): PathMatcher; getUrlPathHelperOrDefault(): UrlPathHelper; }