As part of SNS optimization we have to change our query parameters to path parameters, so:
/somesite?hl=ja
Has to become: /somesite/hl/ja
How do we do that without adding a separate path to every single @RequestMapping method? It doesn't look like I can do it with an Interceptor. We are using Spring 4