-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Closed
Labels
in: webAn issue in web modules (web, webmvc)An issue in web modules (web, webmvc)type: enhancementA general enhancementA general enhancement
Milestone
Description
With this PR merged, the DSL methods that create an AntPathRequestMatcher
or a RegexRequestMatcher
are deprecated. Instead, folks have to specify the actual RequestMatcher
implementation that they want, something like .requestMatcher(new AntPathRequestMatcher("/path"))
.
We should add a static factory method to the RequestMatcher
implementations to make it easier to create instances of the matchers, something like:
.requestMatcher(AntPathRequestMatcher.fromPattern("/path"));
Metadata
Metadata
Assignees
Labels
in: webAn issue in web modules (web, webmvc)An issue in web modules (web, webmvc)type: enhancementA general enhancementA general enhancement