如果包含<ui:include> </ui:include> </h:commandlink>,则<h:commandlink>动作不会调用

时间:2013-03-15 14:38:55

标签: google-app-engine jsf richfaces

如果我放在包含文件中,该操作将不会回调bean。

主档案:

<h:form id="ifLogin">
    <h:panelGrid
        rendered="#{userSession.isLogin}"
        columns="2" columnClasses="columnAlignLeft, columnAlignRight"
        border="0" cellpadding="0">

        <ui:include src="\test.xhtml" />        

    ...

    </h:panelGrid>
</h:form>

包含文件(test.xhtml)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:a4j="http://richfaces.org/a4j"
    xmlns:rich="http://richfaces.org/rich">

    <h:panelGrid border="0" columns="4"> 
        <h:graphicImage value="#{msg.urlImageHome}"
            style="height:26px;width:26px;" />
        <f:subview>             
            <h:commandLink value="#{msg.home}" style="font-size: small;" immediate="true" 
                action="#{pageNavigationBean.updateCeaAppName}">
                <f:param name="requestName" value="CEA_MAIN_PAGE" />
                <f:param name="ceaAppName" value="" />      
            </h:commandLink>    
        </f:subview>
    </h:panelGrid>  
</ui:composition>

解决方法是取出包含文件,直接将代码放在主文件中,如下所示:

主文件(不使用include)

<h:form id="ifLogin">
    <h:panelGrid
        rendered="#{userSession.isLogin}"
        columns="2" columnClasses="columnAlignLeft, columnAlignRight"
        border="0" cellpadding="0">


        <h:panelGrid border="0" columns="4"> 
            <h:graphicImage value="#{msg.urlImageHome}"
                style="height:26px;width:26px;" />
            <f:subview>             
                <h:commandLink value="#{msg.home}" style="font-size: small;" immediate="true" 
                    action="#{pageNavigationBean.updateCeaAppName}">
                    <f:param name="requestName" value="CEA_MAIN_PAGE" />
                    <f:param name="ceaAppName" value="" />      
                </h:commandLink>    
            </f:subview>
        </h:panelGrid>          

    ...

    </h:panelGrid>
</h:form>

我使用richface 4.3.1奇怪的是,当我从本地GAE运行时,这个问题不会发生。在线部署到GAE后,出现问题(即如果使用包含然后操作则不会触发。

这是jsf中的错误吗?或richface实现或GAE?有什么帮助吗?

2 个答案:

答案 0 :(得分:1)

问题识别

使用<ui:include>

不是原因

当包含文件是从后端bean动态生成时出现问题,例如:

<ui:include src="#{pageNavigationBean.appDropDownMenuUrl}" />

如果明确提及网址,则可以使用,例如:

<ui:include src="\test.xhtml" />  

好吧,如果从我当地的GAE运行,两种方式都有效,但在线上部署时,我需要使用显式位置而不是从bean生成。可能是因为GAE问题,其中状态是在客户端保存(javax.faces.STATE_SAVING_METHOD)。

答案 1 :(得分:0)

我无法用完全相同的包含代码(test.xhtml)重现问题,但这里有一些建议:

  1. 逃脱'&gt;'字符(由>>>替换&gt;&gt;&gt;
  2. id指定f:subview属性(根据tld需要)
  3. 将反斜杠('\')更改为斜杠('/')。因此包含将是<ui:include src="/test.xhtml" />