Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望有一个母版页,并在其中切换内容。我目前通过将我的母版页的内容窗格定义为<ui:include src="#{navigation.currentPane}" />
<ui:include src="#{navigation.currentPane}" />
导航 bean 保存内容 facelet 的当前导航路径。内容使用 ajax 更新。
这是正确的方法吗?它有什么缺点吗?
如果您使用 ViewScoped bean,则可能会出现问题。src 中的 EL 可以引导每个请求重新创建您的 bean。使用 SessionScoped bean,我认为它可以正常工作。