WEB开发网
开发学院软件开发Java JSF请求处理过程(二) 请求处理过程总览(FacesS... 阅读

JSF请求处理过程(二) 请求处理过程总览(FacesServlet#service)

 2009-09-24 00:00:00 来源:WEB开发网   
核心提示: 1this.externalContext=ec;2setCurrentInstance(this);3this.rkFactory=(RenderKitFactory)FactoryFinder.getFactory(FactoryFinder.RENDER_KIT_FACTORY);在代码中

1 this.externalContext = ec;
2 setCurrentInstance(this);
3 this.rkFactory = (RenderKitFactory)FactoryFinder.getFactory(FactoryFinder.RENDER_KIT_FACTORY);

在代码中我们经常使用FacesContext.getCurrentInstance()这个静态方法来获取与当前请求对应的 FacesContext对象,实际上是在FacesContext类里面有一个静态的ThreadLocal对象用来存放了当前请求线程对应的 FacesContext对象,于是上面的代码中setCurrentInstance(this)就是把当前构造出来的这个FacesContext对象放到了ThreadLocal里面。

FacesContext创建出来以后,正如上面所说,要让他经过LifeCycle这个“Filter Chain”的逐步处理了。那么,Filter Chain里面放的是一个一个Filter,那么LifeCycle这个Chain里面放的是什么呢?答案是Phases。

FacesServlet让FaceContext通过LifeCycle的处理,分成了两个部分。一个部分是调用LifeCycle的 execute方法,执行逻辑,第二个部分是调用LifeCycle的render方法,呈现响应。FacesServlet.service中代码如下:

1 lifecycle.execute(context);
2 lifecycle.render(context);

在LifeCycleImpl这个实现中,存放了一个Phase对象的数组,存放了7个Phase。其中第一个是null,然后依次是视图重建、应用请求值、验证、更新模型值、执行应用程序、呈现响应。在execute方法中,调用了从视图重建开始到执行应用程序为止的5个Phase,而在 render方法中,调用了最后一个Phase,也就是呈现响应。在LifeCycleImpl类中,代码如下:

    //The Phase instance for the render() method
    private Phase response = new RenderResponsePhase();
    // The set of Phase instances that are executed by the execute() method
    // in order by the ordinal property of each phase
    private Phase[] phases = {
        null, // ANY_PHASE placeholder, not a real Phase
        new RestoreViewPhase(),
        new ApplyRequestValuesPhase(),
        new ProcessValidationsPhase(),
        new UpdateModelValuesPhase(),
        new InvokeApplicationPhase(),
        response
    };

Tags:JSF 请求 处理

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接