JSF / XHTML - 一个xhtml页面,其中包含两次相同的xhtml页面

时间:2014-05-05 06:52:44

标签: java html jsf xhtml

我有一个带有sessioncoped bean的xhtml页面。现在我想在另一个html页面中使用此页面两次,一个在屏幕的左侧,另一个在屏幕的右侧。如果我包含它,它引用同一个bean,我怎样才能使它们独立,而不用不同的bean编写html?

1 个答案:

答案 0 :(得分:0)

您需要使用标签来应用此概念。您可以创建自己的标签并将其添加到xhtml页面taglib

            <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:s="http://jboss.com/products/seam/taglib"
                xmlns:p="http://primefaces.prime.com.tr/ui"
                xmlns:taglibname="http://panorosys.com/products/taglibname/taglib"
                template="/WEB-INF/templates/clrp-template.xhtml">

然后你应该按照预期在html中使用你实现的页面两次。为此,您可以水平创建两个div,并在两个div上使用此taglib。

                        <div class="box1">
                            <clrp:userlist />
                        </div>
                        <div class="box2">
                            <clrp:userlist />
                        </div>

希望这有帮助。