0

抱歉,这听起来可能很基础,但如果有人可以解释如何使用 JSF viewscoped bean 为同一浏览器窗口中的每个选项卡设置显式值。

请指导我阅读一些文章或工作样本。

请帮忙,提前谢谢

更新:

auth-page.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:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:qumola="http://java.sun.com/jsf/composite/qumola"
    xmlns:p="http://primefaces.org/ui">
    <style type="text/css"/>
<h:panelGrid id="newGrid">
                            <ui:param name="labelResourceName"
                                value="#{userMenuState.selectedLeftMenuItem.menuLabel}" />
                            <h:form id="someForm">
                                <h:panelGrid id="topBannerId">
                                    <font>#{msg[labelResourceName]}</font> &nbsp;<font
                                        class="titleTextBar"> </font>
                                    <font class="titleTextBar">
                                        #{activityEditorManagedBean.selectedActivityBean.title}</font>
                                </h:panelGrid>
                            </h:form>
 </h:panelGrid>
</ui:composition>

上面代码中的值“activityEditorManagedBean.selectedActivityBean.title”是一个视图范围的 bean 变量值,但它在打开的每个选项卡中都有相同的值。

4

0 回答 0