navigation « Servlet « JSF Q&A





1. Can I use a JSF navigation rule in a servlet for redirection?    stackoverflow.com

I have to use a few servlets in my Web application. The servlets perform a bit of processing and then redirect the user to an xhtml page. I already have navigation rules ...

2. navigation to servlets in JSF 2.0    coderanch.com

3. Can JSF 2.0 navigation model replace Servlets filters?    coderanch.com

In JSF, you wouldn't normally request "show.xhtml". You'd request something like "show.jsf" and the JSF framerok would have been instructed (via web.xml) to fetch the show.xhtml file and use it as a rendering template. Actually, you're probably going through Facelets, but the net effect is the same. People use filters with JSF for login control all the time. I don't recommend ...