-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for PathPatternParser in Spring MVC #24945
Labels
in: web
Issues in web modules (web, webmvc, webflux, websocket)
type: enhancement
A general enhancement
Milestone
Comments
rstoyanchev
added a commit
that referenced
this issue
Jun 15, 2020
rstoyanchev
added a commit
that referenced
this issue
Jun 15, 2020
kenny5he
pushed a commit
to kenny5he/spring-framework
that referenced
this issue
Jun 21, 2020
kenny5he
pushed a commit
to kenny5he/spring-framework
that referenced
this issue
Jun 21, 2020
kenny5he
pushed a commit
to kenny5he/spring-framework
that referenced
this issue
Jun 21, 2020
rstoyanchev
added a commit
that referenced
this issue
Jun 23, 2020
jhoeller
added a commit
that referenced
this issue
Nov 16, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
in: web
Issues in web modules (web, webmvc, webflux, websocket)
type: enhancement
A general enhancement
Spring MVC has always used
AntPathMatcher
but the use of patterns has grown over time with annotated controllers and URI variables present in most patterns. This is why for WebFlux we introducedPathPatternParser
and the parsedPathPattern
representation which enables more efficient path matching.This issue is to add support for using
PathPattern
in Spring MVC as an alternative to theAntPathMatcher
which will also require using aRequestPath
, a parsed representation of the request path.The text was updated successfully, but these errors were encountered: