With Spring MVC, I know how you set the RequestMapping in every controller and method/action.
RequestMapping
But what if I wanted this to be configurable, so for example I
Try using with @RequestMapping wild cards as below:
@RequestMapping(value="/article_section*/"} public void getArticle(....){ //TODO implementation } @RequestMapping(value="/blog*/"} public void getBlog(....){ //TODO implementation }
Hope this helps!!!