I have a web application developed with Spring 2.5. The application has numerous controllers, containing GET and POST request methods, which are marked with RequestMapping annotations, like this:
@RequestMapping(method = RequestMethod.GET)
I would want to execute some code before each such request, without modifying the existing controllers. How can I accomplish this, if possible?