`
forge
  • 浏览: 23031 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

What is Restore View Phase in JSF LifeCycle?

    博客分类:
  • Jsf
阅读更多
RestoreView is the first phase in the JSF lifecycle. This phase is used for constructing view to display in the front end. Every view has it's own view id and it is stored in the FacesContext's session object. JSF View is collection of components associated with its current state. There is two types of state saving mechanism,

1)Server
2)Client

Default value is server. If you specify state saving method as server, the state of each components will be stored in the server. If it is client, it will be stored in the client side as hidden variables. This value is configured in web.xml as follows:


<context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
</context-param>

Next we will see how FacesServelt construct the view. FacesServlet is the controller servlet in JSF where all the requests will be redirected. when first time JSP page is accessed, FacesServlet will look for whether the view is already exist. If the requested view doesn't exist, then it will create the new view(here creating view means saving the state of all components and store it in the FacesContext) and send the response. When the same JSP is accessed second time, FacesServlet will use the existing view and apply the new request values(apply request values is another phase in the lifecycle) to all the components.

PAGE scope means a hashmap that is stored in the JSF ViewRoot, it's for a particular page, for a particular user (even bound to request/response cycles), and it's not stateless.
分享到:
评论

相关推荐

    华为C8816 Root工具

    华为C8816是一款由华为公司推出的智能手机,它的Root工具是针对该设备进行系统权限提升的必备软件。Root在Android系统中意味着获取手机的最高权限,允许用户对系统进行深度定制、安装需要管理员权限的应用以及优化...

    JSF 详解

    JSF的生命周期可以分为六个阶段:Restore View、Apply Request Values、Process Validations、Update Model Values、Invoke Application和Render Response。 1. Restore View:JSF的处理核心是控件树,他会先将页面...

    JSF的工作方式 JSF架构 JSF模型 JSF事件类型

    1. **恢复视图(Restore View)**:当客户端发起请求时,JSF首先检查是否存在先前创建的视图。如果存在,JSF会恢复这个视图,即重新构建组件树,确保服务器端的组件状态与上次用户交互时一致。 2. **应用请求值...

    JSF程序设计

    1. **Restore View**:恢复请求对应的视图。 2. **Apply Request Values**:将请求参数赋值给组件。 3. **Process Validations**:执行验证逻辑。 4. **Update Model Values**:将组件值更新到模型。 5. **Invoke ...

    jsf的必读教科书

    1. **恢复视图(View Restore)**:在这个阶段,JSF会从客户端请求中恢复出视图树。如果视图尚未创建,则会从视图声明语言(VDL)中创建一个新的视图实例。 2. **应用请求值(Apply Request Values)**:此阶段的主要任务...

    《JSF自定义组件》

    - **重建视图(Restore View)**:在这个阶段,JSF框架会检查当前页面是否是第一次访问。如果是首次访问,则会创建一个新的组件树;如果是会话阶段,则会从客户端或服务器端存储的数据中恢复每个组件的状态,并重建...

    jsf自定义组件.pdf

    - **重建视图(Restore View)**:在这个阶段,JSF框架会检查当前页面是否是第一次访问。如果是首次访问,则会创建一个新的组件树;如果是会话阶段,则会从客户端或服务器端存储的数据中恢复每个组件的状态,并重建...

    JSF如何监测和处理session超时

    JSF有多个阶段,包括恢复视图(Restore View)阶段。在这个阶段,如果用户请求的视图已经过期,JSF会抛出`ViewExpiredException`异常。这个异常表明由于会话超时,应用程序无法找到用户的原始视图状态。 处理`...

    JSF生命周期的事件处理

    1. **恢复视图(Restore View)**:在这个阶段,JSF容器会根据用户的请求来加载相应的视图树。这个视图树包含了页面的所有组件,并且记录了它们的状态信息。 2. **应用请求值(Apply Request Values)**:在这个阶段...

    JSF生命周期及组件开发

    - **恢复视图**(Restore View): 在这一阶段,组件开发人员需要确保视图正确构建,事件处理器和验证器正确绑定。 - **进行响应**(Render Response): 在这一阶段,组件开发人员关注的是如何正确渲染组件以及处理...

    JSF 基础

    - **Restore View**: 当请求到达时,FacesServlet恢复之前保存的组件树,若不存在则创建新的。 - **Apply Request Values**: 从请求参数中提取数据,更新组件树中的值。 - **Process Validations**: 验证用户输入...

    JSF运行原理(知道原理就不怕不懂使用)

    - **Restore View**:加载视图树,恢复状态。 - **Apply Request Values**:读取HTTP请求参数,将它们映射到UI组件和Bean属性上。 - **Process Validations**:执行验证逻辑,检查用户输入是否符合预定义的规则。 - ...

    IBM Redbook -WebSphere Studio 5.1.2 for JSF and SDO

    - **JSF生命周期**:JSF页面请求遵循特定的生命周期,包括Restore Component Tree、Apply Request Values、Process Validations、Update Model Values、Invoke Application和Render Response等阶段。 #### Service ...

    JSF环境的配置.rar

    8. **JSF生命周期**:JSF有六阶段的请求处理生命周期:Restore View、Apply Request Values、Process Validations、Update Model Values、Invoke Application和Render Response。理解这个生命周期对于有效地编写JSF...

    推荐经典《JSF入门》简体中文版教程

    JSF应用程序的每个请求都会经历一系列的生命周期阶段,包括Restore View、Apply Request Values、Process Validations、Update Model Values、Invoke Application和Render Response。在每个阶段,开发者都可以插入...

    jsf核心编程

    1. **恢复视图(Restore View)**:从会话或请求中恢复组件树。 2. **应用请求值(Apply Request Values)**:将请求参数绑定到组件属性。 3. **过程验证(Process Validations)**:执行字段验证和整体业务逻辑验证...

    jsf生命周期和一部分标签介绍

    1. **恢复视图阶段(Restore View)**: 在这个阶段,JSF框架试图找到与当前请求关联的视图状态。如果视图不存在,JSF会创建一个新的视图实例。视图状态包含了组件树和它们的状态信息。 2. **应用请求值阶段...

Global site tag (gtag.js) - Google Analytics