How do I retrieve the FacesContext within a Filter

三世轮回 提交于 2019-11-27 09:26:41
BalusC

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!