SpringMVC----@RequestMapping__Ant路径

追风赶月莫停留,平芜尽处是春山。这篇文章主要讲述SpringMVC----@RequestMapping__Ant路径相关的知识,希望能为你提供帮助。
1.Ant风格资源地址支持3中匹配符:
?:匹配文件名中的一个字符
*:匹配文件名中的任意字符
**:匹配多层路径

@RequestMapping("/testAntPath/*/abc") public String testAntPath(){ System.out.println("SpringMVCTest.testAntPath()"); return SUCCESS; }< a href="https://www.songbingjia.com/android/springmvc/testAntPath/aaaaaaaaaaaa/abc"> testAntPath< /a>

【SpringMVC----@RequestMapping__Ant路径】 

    推荐阅读