我得到了一个具有会话作用域bean的xhtml页面。现在我想在另一个html页面中使用此页面两次,一个在屏幕的左侧,一个在屏幕的右侧。如果我包括它,它指的是同一个bean,我怎么能使它们独立,而不写html与不同的bean?
您需要使用标记来应用这个概念。您可以创建自己的标记并将其添加到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上使用此标签库。
<div class="box1">
<clrp:userlist />
</div>
<div class="box2">
<clrp:userlist />
</div>