I\'ve been using Spring MVC for three months now. I was considering a good way to dynamically add RequestMapping. This comes from the necessity to put controller parts in a
@RequestMapping(value = "/bla/{myParam1}", method = RequestMethod.GET) public String media(@PathVariable("myParam1") String myParam1, HttpServletRequest request, HttpServletResponse response) { return "bla/" + myParam1; }