File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
framework-docs/modules/ROOT/pages/web/webmvc/mvc-controller Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -135,9 +135,9 @@ You can map requests by using glob patterns and wildcards:
135
135
136
136
`+"/projects/{project}/versions"+` does not match `+"/projects/spring/framework/versions"+` as it captures a single path segment.
137
137
138
- | `+{name:[a-z]+}+`
139
- | Matches the regexp `+"[a-z]+"+` as a path variable named "name"
140
- | `+"/projects/{project:[a-z]+}/versions"+` matches `+"/projects/spring/versions"+` but not `+"/projects/spring1/versions"+`
138
+ | `+{name:[a-z]+++ }+`
139
+ | Matches the regexp `+"[a-z]+++ "+` as a path variable named "name"
140
+ | `+"/projects/{project:[a-z]+++ }/versions"+` matches `+"/projects/spring/versions"+` but not `+"/projects/spring1/versions"+`
141
141
142
142
| `+{*path}+`
143
143
| Matches zero or more path segments and captures it as a variable named "path"
You can’t perform that action at this time.
0 commit comments