28

不幸的是找不到答案,所以希望有人能提供帮助。

在 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”的任何值)。

真的很感激有人可能对我出错的地方有任何见解吗?

谢谢!

4

1 回答 1

43
@RequestMapping(value = "/{app}/conf/{fnm}", method=RequestMethod.GET)
public ResponseEntity<?> getConf(@PathVariable("app") String app, @PathVariable("fnm") String fnm) {
   log.debug("AppName:" + app);
   log.debug("fName:" + fnm);
           ...
           return ...
  }

基本上路径变量需要在方法参数中用括号指定。这有帮助吗?

于 2012-07-05T19:16:22.233 回答