为什么 UIComponent 中的encodeXxx方法接受FacesContext参数?

发布于 2024-08-30 03:19:03 字数 321 浏览 7 评论 0原文

我以前从未在 JSF 中创建过自定义组件,所以我现在才注意到 encodeBegin()encodeEnd() 等方法接受 FacesContext参数。

FacesContext 实例通常可以通过 FacesContext.getCurrentInstance() 接收。

所以,我想知道这些方法是否有 FacesContext 参数只是为了方便,或者可以在那里传递一些不同的对象(也许来自外部资源..)。如果后者是可能的那么你能举个例子吗?

I haven't ever before created custom components in JSF so I've noticed only now that methods like encodeBegin(), encodeEnd() etc accept FacesContext parameter.

FacesContext instance can usually be received with FacesContext.getCurrentInstance().

So, I wonder whether these methods have FacesContext parameter just for convenience or some different objects can be passed there (maybe from external resources..). If the latter is possible then could you give an example pls.

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

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

发布评论

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

评论(1

自找没趣 2024-09-06 03:19:03

它们可能碰巧在不同的线程中运行。 FacesContext#getCurrentIsntance() 只能从 HTTP 请求执行的线程中返回,因为它存储为 ThreadLocal 变量。

They may happen to run in a different thread. FacesContext#getCurrentIsntance() can only for sure be returned from the thread which is executed by the HTTP request since it's stored as a ThreadLocal variable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文