源码讲解renderResponse和responseComplete的区别
关键字: renderResponse responseComplete
看源代码:
responseComplete:
/**
* <p>Signal the JavaServer Faces implementation that the HTTP response
* for this request has already been generated (such as an HTTP redirect),
* and that the request processing lifecycle should be terminated as soon
* as the current phase is completed.</p>
*
* @throws IllegalStateException if this method is called after
* this instance has been released
*/
public abstract void responseComplete();
renderResponse:
/**
* <p>Signal the JavaServer faces implementation that, as soon as the
* current phase of the request processing lifecycle has been completed,
* control should be passed to the <em>Render Response</em> phase,
* bypassing any phases that have not been executed yet.</p>
*
* @throws IllegalStateException if this method is called after
* this instance has been released
*/
public abstract void renderResponse();
responseComplete和renderResponse的关系有点象break和continue的关系,responseComplete指示当前的response已经产生,JSF应该在当前阶段执行完成后立刻整个生命周期,break的概念。renderResponse则是指示当前阶段执行结束后直接跳到Render Response阶段,继续生命周期,因此是continue的概念。
下面是LifeCycle的execute和render方法,更加证实了这些:
com.sun.faces.lifecycle.LifecycleImpl
// Execute the phases up to but not including Render Response
public void execute(FacesContext context) throws FacesException {
if (context == null) {
throw new NullPointerException
(MessageUtils.getExceptionMessageString
(MessageUtils.NULL_PARAMETERS_ERROR_MESSAGE_ID, "context"));
}
if (LOGGER.isLoggable(Level.FINE)) {
LOGGER.fine("execute(" + context + ")");
}
for (int i = 1, len = phases.length -1 ; i < len; i++) { // Skip ANY_PHASE placeholder
if (context.getRenderResponse() ||
context.getResponseComplete()) {
break;
}
phases[i].doPhase(context, this, listeners.listIterator());
}
}
// Execute the Render Response phase
public void render(FacesContext context) throws FacesException {
if (context == null) {
throw new NullPointerException
(MessageUtils.getExceptionMessageString
(MessageUtils.NULL_PARAMETERS_ERROR_MESSAGE_ID, "context"));
}
if (LOGGER.isLoggable(Level.FINE)) {
LOGGER.fine("render(" + context + ")");
}
if (!context.getResponseComplete()) {
response.doPhase(context, this, listeners.listIterator());
}
}
一般加ResponseComplete之后,当前页面会变成空白,这对于后台关闭页面可用
分享到:
相关推荐
Faces请求生成非Faces响应使用FacesContext.responseComplete 方法来呈现响应阶段,而非Faces请求生成Faces响应使用FacesContext.renderResponse 方法来呈现响应阶段。 在JSP 中,sql 标签不符合分层原则,sql ...
监听器可以影响生命周期的进程,例如通过调用`FacesContext.renderResponse()`提前结束当前阶段,或者调用`FacesContext.responseComplete()`立即终止整个生命周期。 4. **事件处理与JSF生命周期的关系**: 在JSF...
JSF的生命周期允许开发者灵活地插入自定义的行为,比如通过调用`FacesContext.responseComplete()`或`FacesContext.renderResponse()`来改变流程。理解生命周期对于有效地编写JSF应用程序至关重要,因为它指导了何时...
FacesContext.renderResponse,跳到 和 A. FacesContext.responseComplete,跳过。 #### 二、填空题解析 **1. Web组件类型** - **知识点解释**:Web组件包括 Java Servlet、JSP 页面和 Web 服务端点等。这些组件...
- 可以通过调用`FacesContext.responseComplete()`方法将用户重定向到另一个页面。 - 使用`FacesContext.renderResponse()`重新显示原始视图。 - 忽略某些阶段或合并多个阶段以优化性能。 #### 四、JSF组件开发 ...