How to use multiple mappings for one request ?

Normally, we set one URL per defined request. But sometimes we can have to define multiple URLs corresponding to the same request. We can do it in normal way, just by specyfing a list of URLs within {}. For example, below code will map /myFirstPage and /mySecondPage to the method annotated with given request mapping (applied only for HTTP GET method):
@RequestMapping(value = {"/myFirstPage", "/mySecondPage"}, method = RequestMethod.GET)