@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 ... }基本上,路径变量需要在方法参数中用括号指定。这有帮助吗?



