Couldn\'t find an answer to this unfortunately so hoping someone can help.
In Spring MVC 3.1.0 here is my method:
@RequestMapping(value = \"/{app}/co
@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 ...
}
Basically path variables need to be specified with parentheses, in method arguments. Does this help?