| Author |
Problem in redirecting to the index screen
|
Manohar Chhapolia
Greenhorn
Joined: Nov 22, 2006
Posts: 17
|
|
Hi All, I have a filter in which I redirect the screen to login page, if the url is directly pasted in the browser. It works fine but when the application is in use and suddenly user pastes the URL in the browser of index page, I need to clear some faces session values and redirect the screen to login and in the else part of my code I am not able to get the handle of facesContext (To clear the Backing bean values). Pls advice me. Any better approach to redirect to the index screen is welcome. public void doFilter(ServletRequest req, ServletResponse res, FilterChain filterChain) throws IOException, ServletException { if ((req instanceof HttpServletRequest) && (res instanceof HttpServletResponse)) { HttpServletRequest request = (HttpServletRequest) req; if (request.getMethod().equals("GET")) { if (!request.getRequestURL().toString().equals( "LoginScreen")) { request.getSession().invalidate(); ((HttpServletResponse) res) .sendRedirect("LoginScreen"); return; } } else { //FacesContext.getCurrentInstance() returns me null } } filterChain.doFilter(req, res); }
|
 |
Nitin Deshmukh
Greenhorn
Joined: Nov 28, 2007
Posts: 9
|
|
You can not access FacesContext in a Servlet or a Filter. It will always be null. If you want to access it anyways, take a look at http://balusc.blogspot.com/2006/06/communication-in-jsf.html. Another way of doing it is try accessing your bean directly. looks like you have session scoped bean, so you can simply get it from the session by doing session.getAttribute("managedBeanName"); and then you can do whatever you want with this object.
|
Nitin
|
 |
Manohar Chhapolia
Greenhorn
Joined: Nov 22, 2006
Posts: 17
|
|
The blog is really useful for a beginner like me. Thanks a lot Nitin.
|
 |
 |
|
|
subject: Problem in redirecting to the index screen
|
|
|