I'm reading up on Spring MVC and trying some tutorials and came up with a quick question about the @RequestMapping annotation.
Let's assume I have a project with hundreds of mappings, like below (assume they are all within their own Controller class)
@RequestMapping("/front")
@RequestMapping("/away")
@RequestMapping("/behind")
@RequestMapping("/side")
I could see this getting quite messy to maintain at some point in an enterprise sized application. Does anyone know if there's a way to "map" all the request paths in a user friendly way? Are there any best practices when dealing with these annotation based mappings?