我可以将 /** 通配符放在请求映射的中间,例如:“/some/resource/**/somthing”
在 Spring 3 中,我可以做到这一点
@RequestMapping("/some/resource/**")
映射
/some/resource/A -> ControllerMethod1
/some/resource/A/B -> ControllerMethod1
/some/resource/A/B/C/D/E/F -> ControllerMethod1
对于任意数量的路径部分
但是这个映射太贪心了,不允许我将子 URL 映射@RequestMapping("/some/resource/**/somthing")
到另一个控制器,例如
/some/resource/A/somthing -> ControllerMethod2
/some/resource/A/B/somthing -> ControllerMethod2
/some/resource/A/B/C/D/E/F/somthing -> ControllerMethod2
我怎样才能做到这一点?