FacesContext and “Servlet” Context
问题 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. 回答1: It's the ServletContext. It's