Hi,
is there any equivalent to FacesContext, but in servlet environment?
I have some DAOSessionManager that handles transaction to my database. I can use the FacesContext to identify the current http request when the current page is written using JSF, but what about servlet ones ?
I can't find any way to get the current Servlet context, or httpRequest...
Thanks.
PS : yes, having a reference to FacesContext from my DAO layer is a shame, but that's a start.