I have a JSP page which is named as erSelection.jsp. But, at the deployment in the configuration file it is stored as ERSelection.jsp as a result page not found error is found. Is there a way in JSF we can redirect the URL http://localhost:8080/Test/ERSelection.faces to erSelection.faces.
|
feedback
|
|
If just renaming the physical file is really not an option, your best bet is to either create a custom filter which does that
or to grab a more customizeable URL rewrite filter which does that by a simple configuration file, such as the Tuckey's URLRewriteFilter. | |||||
feedback
|