I have asked a recent question regarding a similar urls mapping to the same controller. In this case I had to give it 3 or 4 urls which is fine.
The example contained the following.
@RequestMapping({"/protect", "/protekt", "/proteckt", "/protext"})
My issue now is there are 100-150 urls that weill essentially go through ONE controller. These URL's are to be contained in a database. I am looking for an elegant way to maintain this in the Request Mapping rather than putting 100 different URLS(that may change) particularly because the client I am working for doesn't want to make any changes to the back end. Is there an elegant way to do this? Thanks.