**[leebm](https://jira.spring.io/secure/ViewProfile.jspa?name=leebm)** opened **[SPR-11331](https://jira.spring.io/browse/SPR-11331?redirect=false)** and commented example: ```java @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:** - #15664 MatrixVariables do not work **Referenced from:** commits https://github.com/spring-projects/spring-framework/commit/cfa78a9b25e532d8658cab3dd5623a3e0e505440, https://github.com/spring-projects/spring-framework/commit/175aa86d79621fec5a49d4b18a9919d19e8c6def, https://github.com/spring-projects/spring-framework/commit/98174e101f97bbf59b85420601a0130bb168a341 **Backported to:** [3.2.7](https://github.com/spring-projects/spring-framework/milestone/95?closed=1)