找不到這個不幸的答案,所以希望有人可以幫忙。Spring MVC中的多個@PathVariable
在Spring MVC 3.1.0這裏是我的方法:
@RequestMapping(value = "/{app}/conf/{fnm}", method=RequestMethod.GET)
public ResponseEntity<?> getConf(@PathVariable String app, @PathVariable String fnm) {
log.debug("AppName:" + app);
log.debug("fName:" + fnm);
...
return ...
}
我已經看到了一些在線的例子,它似乎存在具有理論上多個@PathVariables沒有問題。
但是,當我這樣做時,「app」和「fnm」都包含相同的值(即分配給「app」的值)。
真的很感謝任何見解有人可能要我去哪裏錯了嗎?
謝謝!
應該工作,你確定你調用它是正確的? – NimChimpsky 2012-07-05 19:17:19