You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.3 KiB
1.3 KiB
URL Path Variable Matching
| Pattern | Pattern String | Example | Matches | Remark |
|---|---|---|---|---|
| {*foo} | /spring/{*id} | /spring/bb/tutor | /bb/tutor | |
| /spring/bb | /bb | |||
| {*filepaths} | /files/{*filepaths} | /files/hello.txt | content of hello.txt | RouterFunctions.resources() |
| ? | /spring/t?st | /spring/test | ||
| * | /spring/*Id | /spring/TutorId | ||
| ** | /spring/** | /spring/xx/yy/xx | ||
| {params:[a-z]+} | /spring/{parama:[a-z]+} | /spring/parama=abc | abc | |
| {var1}_{var2} | /spring/{var1}_{var2} | /spring/aa_bb | aa,bb |