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.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted

If just renaming the physical file is really not an option, your best bet is to either create a custom filter which does that

if (request.getRequestURI().endsWith("/ERSelection.faces")) {
    response.sendRedirect(request.getContextPath() + "/erSelection.faces");
    // You may want to do a 301 instead with a Location header.
} else {
    chain.doFilter(request, response);
}

or to grab a more customizeable URL rewrite filter which does that by a simple configuration file, such as the Tuckey's URLRewriteFilter.

link|improve this answer
Thanks a lot. Your solution worked for me. I am a regular visitor of your blog. – Nrusingha Sep 19 '11 at 15:08
You're welcome. Enjoy the blog :) – BalusC Sep 19 '11 at 15:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.