After calling URL "/article/1234abcd" how to retrieve the value `1234abcd` from inside the `article` action?

254 views Asked by At
@RequestMapping(value = "/article", method = RequestMethod.GET)
public final String article(final ModelMap model)
{
}

If this is called using the address:

/article/1234abcd

How can the value 1234abcd be retrieved from inside the article method?

1

There are 1 answers

0
skaffman On BEST ANSWER

By using @PathVariable:

@RequestMapping(value = "/article/{articleId}", method = RequestMethod.GET)
public final String article(final ModelMap model, @PathVariable String articleId)
{
}

See Spring docs for more info.