web-dev-qa-db-ja.com

JSF 1.2:ui:include with parameters

JSF 1.2に2ページ(one.xhtmlおよびother.xhtml)があり、
次のルールによって現在のページに含まれます:

...
    <c:if test="#{flowScope.Bean.param1}">
        <ui:include src="one.xhtml"/>
    </c:if> 

    <c:if test="#{!flowScope.Bean.param1}">
        <ui:include src="other.xhtml"/>
    </c:if> 
...

まで one.xhtml とは異なり other.xhtmlアクションパラメーターのみ:

one.xhtml:<h:commandLink action="actionOne">
other.xhtml:<h:commandLink action="actionTwo">

一般的なxhtmlを使用することは可能ですか?
one.xhtmlとother.xhtmlの代わりに、次のようなもの:

...
    <c:if test="#{flowScope.Bean.param1}">
        <ui:include src="general.xhtml" param="actionOne"/>
    </c:if> 

    <c:if test="#{!flowScope.Bean.param1}">
        <ui:include src="general.xhtml" param="actionTwo"/>
    </c:if> 
...

ご協力ありがとうございます。

29
sergionni

含まれるファイルにパラメーターを渡すには、<ui:param>の中に<ui:include>をネストする必要があります。

<ui:include src="general.xhtml">
    <ui:param name="action" value="actionOne" />
</ui:include>

そしてインクルードには:

<h:commandButton action="#{action}" />

これは文字列のみをサポートし、アクションメソッドはサポートしないことに注意してください。後者の場合、JSF 2.0にアップグレードして composite components を使用する必要があります。

59
BalusC

BalusCの答えに加えて:

これは文字列のみをサポートし、アクションメソッドはサポートしないことに注意してください。後者の場合、JSF 2.0にアップグレードし、複合コンポーネントを使用する必要があります。

JSF 1.2でこれを行う方法がありますが、ややいです:

<ui:include src="general.xhtml">
    <ui:param name="actionBean" value="#{myBackingBean}" />
    <ui:param name="actionMethod" value="edit" />
</ui:include>

そして

<h:commandButton action="#{actionBean[actionMethod]}" />
21
meriton