处理 TagAttributeException 并更改 ui:includeSrc

Handling TagAttributeException and change ui:includeSrc

我们在页面中有动态菜单项,并且包含源 .xhtml 的链接存储在数据库中,在这种情况下,如果源 xhtml 输入错误或找不到应用程序上下文,它会抛出带有无效路径消息的 TagAttributeException .

在此事件之后,如果我们发出任何 ajax 请求都会失败,原因是在恢复视图阶段尝试使用无效的 xhtml(包括 src)进行恢复。

有没有办法在运行时处理这个异常并将 xhtml src 更改为一些默认的 xhtml。这样任何进一步的 AJAX 调用都会起作用。

XHTML

 <h:form prependId="false">            

          <p:commandButton actionListener="#{exceptionPF.includePage()}"
                 ajax="true"
                 value="Include Wrong Source" />

           <p:commandButton actionListener="#{exceptionPF.includeRightPage()}"
                 ajax="true"
                 value="Include Right Source" />

          <p:panel id="div1" >

              <ui:include src="#{exceptionPF.srcPage}" />

          </p:panel>          


         <p:ajaxExceptionHandler type="javax.faces.view.facelets.TagAttributeException"
                        update="exceptionDialog"
                        onexception="PF('exceptionDialog').show();" />



       <p:dialog id="exceptionDialog" header="Exception '#{pfExceptionHandler.type}' occured!" widgetVar="exceptionDialog"
          height="500px">
    Message: #{pfExceptionHandler.message} <br/>
    Stack-Trace: <h:outputText value="#{pfExceptionHandler.formattedStackTrace}" escape="false" /> <br />

    <p:button onclick="document.location.href = document.location.href;"
              value="Reload!"
              rendered="#{pfExceptionHandler.type == 'javax.faces.application.ViewExpiredException'}" />
</p:dialog>


    </h:form>

豆子

@Named
@ViewScoped
public class ExceptionPF implements Serializable {

String srcPage;

public String getSrcPage() {
    return srcPage;
}

public void setSrcPage(String srcPage) {
    this.srcPage = srcPage;
}

public void includePage()
{ 
    setSrcPage("wrong.xhtml");
    RequestContext.getCurrentInstance().update("div1");
}

 public void includeRightPage()
{
    setSrcPage("correct.xhtml");
    RequestContext.getCurrentInstance().update("div1");
}

}

错误

19:38:08,978 INFO  [stdout] (default task-14) *****BEFORE **** RESTORE_VIEW 
   19:38:08,985 INFO  [stdout] (default task-14) *****AFTER **** RESTORE_VIEW
   19:38:08,986 SEVERE [javax.enterprise.resource.webcontainer.jsf.context]     
   (default task-14) javax.faces.view.facelets.TagAttributeException:   
   /index.xhtml @33,62
   <ui:include src="#{exceptionPF.srcPage}"> Invalid path : wrong.xhtml
        at com.sun.faces.facelets.tag.ui.IncludeHandler.apply(IncludeHandler.jav

当视图本身导致异常时,无法从视图端处理异常。

您可以使用 ViewDeclarationLanguage#viewExists() 检查给定视图是否存在。您应该在设置 srcPage 之前执行此操作,如有必要,请在单独的(布尔)变量中获取错误的值。

以下是您如何在实用方法的风格中使用它:

public static boolean viewExists(String viewId) {
    FacesContext context = FacesContext.getCurrentInstance();
    return context.getApplication().getViewHandler()
        .getViewDeclarationLanguage(context, viewId).viewExists(context, viewId);
}