Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Short question: Is it possible to do a redirection, say when a user isn't logged in, when a page is rendered?

share|improve this question

4 Answers

up vote 5 down vote accepted

For that you should use a Filter.

E.g.

public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws ServletException, IOException { 
    if (((HttpServletRequest) request).getSession().getAttribute("user") == null) {
        ((HttpServletResponse) response).sendRedirect("error.jsf"); // Not logged in, so redirect to error page.
    } else {
        chain.doFilter(request, response); // Logged in, so just continue.
    }
}

Here I assume that the User is been placed in the session scope as you would normally expect. It can be a session scoped JSF managed bean with the name user.

A navigation rule is not applicable as there's no means of a "bean action" during a normal GET request. Also doing a redirect when the managed bean is about to be constructed ain't gong to work, because when a managed bean is to be constructed during a normal GET request, the response has already started to render and that's a point of no return (it would only produce IllegalStateException: response already committed). A PhaseListener is cumbersome and overwhelming as you actually don't need to listen on any of the JSF phases. You just want to listen on "plain" HTTP requests and the presence of a certain object in the session scope. For that a Filter is perfect.

share|improve this answer
Thumbs up. Now, I just need to tailor this so it only triggers on certain pages. – James Poulson Mar 5 '10 at 12:26
Just make those certain pages have a generic url-pattern and map this filter on exactly that url-pattern in web.xml. For example /secured/* or so. – BalusC Mar 5 '10 at 12:29

Yes:

if(!isLoggedIn) {
FacesContext.getCurrentInstance().getExternalContext().redirect(url);
}
share|improve this answer
Thanks :) . It would be convenient to trigger a navigation-rule but I suppose this isn't possible. – James Poulson Mar 5 '10 at 11:12

You can use a PhaseListener to specify when you want to do redirection.

share|improve this answer

In a PhaseListener try:

FacesContext ctx = FacesContext.getCurrentContext();
ctx.getApplication().getNavigationHandler()
     .handleNavigation(ctx, null, "yourOutcome");
share|improve this answer
The FacesContext isn't available in a Filter yet because it runs before the FacesServlet kicks in. – BalusC Mar 5 '10 at 12:29
When does the FacesContext appear in terms of the lifecycle? – James Poulson Mar 5 '10 at 21:46
it is present during the whole lifecycle. It is not present before the FacesServlet is invoked. The FacesServlet starts the JSF lifecycle. – Bozho Mar 5 '10 at 21:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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