當前位置: 首頁>>代碼示例>>Java>>正文


Java FacesContext.getCurrentPhaseId方法代碼示例

本文整理匯總了Java中javax.faces.context.FacesContext.getCurrentPhaseId方法的典型用法代碼示例。如果您正苦於以下問題:Java FacesContext.getCurrentPhaseId方法的具體用法?Java FacesContext.getCurrentPhaseId怎麽用?Java FacesContext.getCurrentPhaseId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.faces.context.FacesContext的用法示例。


在下文中一共展示了FacesContext.getCurrentPhaseId方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: goToErrorPage

import javax.faces.context.FacesContext; //導入方法依賴的package包/類
/**
 * @param context
 * @param e
 * @throws Throwable
 */
private void goToErrorPage(FacesContext context, Throwable e) {
    HttpServletRequest request = (HttpServletRequest) context.getExternalContext().getRequest();
    request.setAttribute(ERROR_EXCEPTION + "_stacktrace", e);

    if (context.getCurrentPhaseId() == PhaseId.RENDER_RESPONSE) {
        throw new FacesException(e);
    }

    if (e instanceof FileNotFoundException) {
        logger.log(Level.WARNING,"File not found", e);
        throw new FacesException(e);
    }


    request.setAttribute(ERROR_EXCEPTION_TYPE, e.getClass().getName());
    request.setAttribute(ERROR_MESSAGE, e.getMessage());
    request.setAttribute(ERROR_REQUEST_URI, request.getHeader("Referer"));
    request.setAttribute(ERROR_STATUS_CODE, HttpServletResponse.SC_INTERNAL_SERVER_ERROR);

    String errorPage = findErrorPage(e);
    if (!has(errorPage)) {
        String errorPageParam = context.getExternalContext().getInitParameter(Constants.InitialParams.ERROR_PAGE);
        if (!has(errorPageParam)) {
            errorPage = Constants.DEFAULT_ERROR_PAGE;
        }
    }
    context.getApplication().getNavigationHandler().handleNavigation(context, null, errorPage);
    context.renderResponse();
}
 
開發者ID:adminfaces,項目名稱:admin-template,代碼行數:35,代碼來源:CustomExceptionHandler.java

示例2: handleBusinessException

import javax.faces.context.FacesContext; //導入方法依賴的package包/類
/**
 * @param context
 * @param e       application business exception
 */
private void handleBusinessException(FacesContext context, BusinessException e) {
    if (context.getCurrentPhaseId() == PhaseId.RENDER_RESPONSE) {
        throw new FacesException(e);
    }
    if (has(e.getExceptionList())) {
        for (BusinessException be : e.getExceptionList()) {
            addFacesMessage(be);
        }
    } else { //Single exception
        addFacesMessage(e);
    }
    validationFailed();
    context.renderResponse();
}
 
開發者ID:adminfaces,項目名稱:admin-template,代碼行數:19,代碼來源:CustomExceptionHandler.java


注:本文中的javax.faces.context.FacesContext.getCurrentPhaseId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。