I'm looking to map URIs to file names that do not match the URI name. Example:
need to map /login.app to an actual page like /WEB-INF/pages/loginForm.jsp
Note that the URI name is login and the actual page name is loginForm.
Typically if the name of the URI is the same as the page name (/login.app maps to login.jsp) , then it seems to work effortlessly, but I don't wanna expose my internal naming convention on the URI.
Thanks in advance.


Reply With Quote
Sami