I have a simple jsp project and I am looking for a way to have multiple uri mappings to the same page. For example I have a jsp called bookInfo.jsp, but I want 2 uri mappings: 1. /Book/{id} 2. /{bookname}/
In both cases i want the bookInfo.jsp invoked but with the uri params converted to query string.
I've read that the spring framework could make this happen, but I do not have any experience with it and I couldnt find an examples online illustrating it.
I would appreciate any pointers.