Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I retrieve the FacesContext within a Filter

How do I retrieve the FacesContext within a Filter?

I followed following article on how to retrieve the FacesContext in a Filter:

http://ocpsoft.org/java/jsf-java/jsf-20-extension-development-accessing-facescontext-in-a-filter/

But the problem is that it is not working with Flash scope. Following NPE is thrown:

java.lang.NullPointerException
at com.sun.faces.context.flash.ELFlash.loggingGetPhaseMapForWriting(ELFlash.java:751)
at com.sun.faces.context.flash.ELFlash.getPhaseMapForWriting(ELFlash.java:785)
at com.sun.faces.context.flash.ELFlash.put(ELFlash.java:392)
at com.sun.faces.context.flash.ELFlash.put(ELFlash.java:112)

I want to add redirection in my filter and use flash scope to save some data and also Messages, which is not working.

like image 346
djmj Avatar asked Dec 26 '12 19:12

djmj


1 Answers

How do I retrieve the FacesContext within a Filter?

You cannot. The FacesContext is created by the FacesServlet and thus only available within any Java code which is processed by the FacesServlet, which covers all JSF artifacts, such as managed beans and phase listeners. The article only shows how to manually create the FacesContext, but this approach is ultimately useless. The FacesContext is just an abstraction of everything already available by standard Servlet API such as HttpServletRequest, HttpSession, ServletContext, etc. Just use them directly the same way as JSF is doing "under the hoods".

You have 2 options:

  1. Use a JSF PhaseListener instead. Depending on the concrete functional requirement which you didn't tell anything about, this may be a rather clumsy solution/workaround.

  2. Don't use JSF-provided Flash scope facility, but homebrew one yourself. The principle is rather simple: set a cookie on initial request, send a redirect, in the redirected request lookup the cookie and remove it (so that it's not there anymore on any subsequent request). That's exactly how the JSF Flash scope works under the hoods. See also Set notification message as request attribute which should show after sendRedirect for a concrete example.

like image 57
BalusC Avatar answered Oct 13 '22 20:10

BalusC