FacesContext 有何用途?
FacesContext 的用途是什么?
它具体是在哪里实现的?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
FacesContext 的用途是什么?
它具体是在哪里实现的?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
引用 JSF 2.0 规范第 6.1 章:
它在类
javax.faces.context 中指定.FacesContext
和 Mojarra 中在类com.sun.faces.context.FacesContextImpl
并在类org.apache.myfaces.context.servlet.FacesContextImpl
。另请参阅:
Quote from chapter 6.1 of JSF 2.0 specification:
It is specified in class
javax.faces.context.FacesContext
and in Mojarra implemented in classcom.sun.faces.context.FacesContextImpl
and in MyFaces implemented in classorg.apache.myfaces.context.servlet.FacesContextImpl
.See also:
每个新请求都会创建 FacesContext 的新实例。 FacesContext 的主要任务是提供与其关联的特定请求相关的所有信息。
例如:要在某些验证或转换失败后添加消息,您可以简单地将消息添加到 FacesContext,最终在屏幕上显示所需的消息。
您还可以通过调用查看甚至随时停止 JSF 生命周期
A new instance of FacesContext gets created with every new request. The main task of FacesContext is to provide all the information regarding the particular request with which it is associated.
For example : to add messages after certain validation or conversion failure, you can simply add the message to the FacesContext which ultimately displays the desired message on the screen.
Also you can take a look and even stop the JSF lifecycle at any point by calling
参考:
http://docs.oracle.com/ javaee/6/api/javax/faces/context/FacesContext.html
reference:
http://docs.oracle.com/javaee/6/api/javax/faces/context/FacesContext.html
参考:Facescontext Context Object有什么用
Reference: What is the use of Facescontext Context Object