Closed
Description
leebm opened SPR-11331 and commented
example:
@RequestMapping(value = "/hello/{mes}", method = RequestMethod.GET)
public String hello(
@PathVariable String mes, Model model,
@MatrixVariable int age) {
model.addAttribute("mes", mes);
model.addAttribute("age", age);
return "hello";
}
url: http://localhost/s3/hello/hi;age=21
this url can't be matched.
Affects: 3.2.6
Issue Links:
- MatrixVariables do not work [SPR-11036] #15664 MatrixVariables do not work
Referenced from: commits cfa78a9, 175aa86, 98174e1
Backported to: 3.2.7