Spring MVC请求映射和PathVariable

时间:2014-05-24 09:23:06

标签: spring spring-mvc

是否可以使用@PathVariable注释在Spring MVC中跟踪url?

/download/253/path/to/file/name.ext

我尝试遵循模式:/download/{intVar}/{fileLocation},但请求失败,出现400 HTTP错误。

1 个答案:

答案 0 :(得分:0)

是的,这是可能的。

参考 http://docs.spring.io/spring/docs/3.2.x/spring-framework-reference/html/mvc.html#mvc-ann-requestmapping-uri-templates-regex

在您的情况下,它将如下所示

@RequestMapping("/download/{intVar}/**{fileLocation:.+}")