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.

18 lines
1.3 KiB
Markdown

# URL Path Variable Matching
* [Reference](https://www.baeldung.com/spring-5-mvc-url-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 | |