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