FacesContext和“Servlet”语境

发布于 2024-09-24 01:49:42 字数 273 浏览 5 评论 0 原文

有没有与 FacesContext 等效的东西,但是在 servlet 环境中?

我有一些 DAOSessionManager 来处理我的数据库的事务。当当前页面是使用 JSF 编写时,我可以使用 FacesContext 来识别当前的 http 请求,但是 servlet 呢?

我找不到任何方法来获取当前的 Servlet 上下文或 httpRequest...

谢谢。

PS:是的,从我的 DAO 层引用 FacesContext 是一种耻辱,但这是一个开始。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

來不及說愛妳 2024-10-01 01:49:43

这是 ServletContext 。它可以通过继承的 在 servlet 类中使用getServletContext() 方法。

protected void doGet(HttpServletRequest request, HttpServletResponse response) {
    ServletContext context = getServletContext();
    // ...
}

与 FacesContext 的主要区别在于 ServletContext 不是 ThreadLocal,因此您无法像 FacesContext#getCurrentInstance()做。您确实需要传递 ServletContext 引用到您需要的 DAO 方法中:

someDAO.doSomething(getServletContext());

或者更好的是,为了避免紧密耦合,只需从中提取所需的信息并传递它:

Object interestingData = getServletContext().getAttribute("interestingData");
someDAO.doSomething(interestingData);

It's the ServletContext. It's available inside servlet classes by the inherited getServletContext() method.

protected void doGet(HttpServletRequest request, HttpServletResponse response) {
    ServletContext context = getServletContext();
    // ...
}

The major difference with FacesContext is that the ServletContext isn't ThreadLocal, so you cannot obtain it "statically" from the current thread like FacesContext#getCurrentInstance() does. You really need to pass the ServletContext reference around into the DAO methods wherever you need it:

someDAO.doSomething(getServletContext());

Or better yet, to avoid tight coupling, just extract the desired information from it and pass it:

Object interestingData = getServletContext().getAttribute("interestingData");
someDAO.doSomething(interestingData);
岁月打碎记忆 2024-10-01 01:49:43
ServletContext servletContext = (ServletContext)FacesContext.getCurrentInstance().getExternalContext().getContext();
ServletContext servletContext = (ServletContext)FacesContext.getCurrentInstance().getExternalContext().getContext();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文