我更新了我的项目以使用 3.0.6.RELEASE 中的 3.1.0.RELEASE(实际上 - 不是我,但 Spring Roo 做到了),并且以下映射不再起作用:
@RequestMapping(value = "/partners/public/logos/{id}/{filename}.{ext}")
public void partners_get_logo2(@PathVariable Long id,
@PathVariable String filename, @PathVariable String ext,
ModelMap modelMap, HttpServletRequest request,
HttpServletResponse response) throws Exception {
...
}
如何映射超过 2 个路径变量?