I would like to use Spring MVC's @RequestMapping annotation in order to map any URLs not found by more specific @RequestMappings.
Let me illustrate with an example:
Say a URL such as "/ICannotBeFound.htm" is not mapped by the application other's and higher-priority @RequestMappings. How can I map it to a low prioriry @RequestMapping?
Is this possible?