在支撑豆中" />

以编程方式创建一个 在支撑豆中

发布于 2024-12-12 17:10:42 字数 605 浏览 0 评论 0 原文

在 JSF 页面中,我有:

<h:form id="form">
   <h:panelGroup id="content" layout="block"/>
</h:form>

在 Java SessionScoped bean 中,我有一个方法:

public void fillContent()
{
   UIComponent content = FacesContext.getCurrentInstance().getViewRoot().findComponent("form:content");
   content.getChildren().clear();
   content.getChildren().add(/*New <ui:include src="Page.xhtml"/>*/);
}

插入为 内容孩子们? 在哪里可以找到所有 JSF Java 名称映射的列表?

谢谢

In a JSF page I have:

<h:form id="form">
   <h:panelGroup id="content" layout="block"/>
</h:form>

In a Java SessionScoped bean i have a method:

public void fillContent()
{
   UIComponent content = FacesContext.getCurrentInstance().getViewRoot().findComponent("form:content");
   content.getChildren().clear();
   content.getChildren().add(/*New <ui:include src="Page.xhtml"/>*/);
}

What is the Java code to insert the <ui:include src="Page.xhtml"/> as content children?
Where I can find the list for the mapping of all the JSF Java names?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就此别过 2024-12-19 17:10:43

不幸的是 ui:include 是作为标签处理程序实现的。这意味着它是在构建组件树时评估并执行的,并且没有相应的 UIComponent 类。

为了实现您的目标,您必须在保留对在树构建期间可访问的faceletContext的引用之后,使用像javax.faces.view.facelets.FaceletContext#includeFacelet这样的facelets api。这不是一个简单的方法,我强烈建议重新表述您的问题并寻找其他解决方案。

我不知道任何有关标签组件/处理程序映射的官方指南,但我确信像“Core Java Server Faces”这样的书籍会对此有所帮助。

您可以首先尝试在 Facelet 中执行此操作,例如:

<h:form id="form">
  <ui:include src="#{content.path}"/>
</h:form>

Unfortunately ui:include is implemented as a tag handler. This means it is evaluated and executed when component tree is built and there is no corresponding UIComponent class.

To achieve your goal you would have to use the facelets api like javax.faces.view.facelets.FaceletContext#includeFacelet, after preserving reference to the faceletContext which is accessible during tree construction. This is not a straightforward approach and I would strongly recommend rephrasing your problem and looking for another solution.

I don't know any official guide with tag-component/handler mapping, I am sure some books like "Core Java Server Faces" will help with this though.

You can try to do this in facelets to begin with, something like:

<h:form id="form">
  <ui:include src="#{content.path}"/>
</h:form>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文