无法使用F:元数据F:内部组件的视图



在下一页中,我无法加载 automobileLists,因为填充它的方法在 f:metadata中的组件之外。我有一个NullPoInterException错误。部分代码:

<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://xmlns.jcp.org/jsf/html"
  xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
  xmlns:p="http://primefaces.org/ui"
  xmlns:f="http://xmlns.jcp.org/jsf/core">
<h:head>
    <title>title</title>
</h:head>
<f:metadata>
    <f:viewAction action="#{primeAutomobileController.populateAutomobileFieldList}"/>
</f:metadata>
<ui:composition template="layout/template.xhtml">
    <ui:define name="content">.....................

我加载它的唯一方法是将primeAutomobileController范围调整到会话而不是原始请求,并通过按钮从上一页调用该方法,我希望它在页面开始时加载,而不是withouth。以前称呼它。所讨论的方法:

public void populateAutomobileFieldList(){
    List<String> automobileFieldSource = new ArrayList<>();
    List<String> automobileFieldTarget = new ArrayList<>();
    automobileFieldSource.add("Make");
    automobileFieldSource.add("Model");
    automobileFieldSource.add("Year");
    automobileFieldSource.add("Description");
    setAutomobileList(new DualListModel<>
        (automobileFieldSource, automobileFieldTarget));
}

partial index.xhtml f:metadata加载

<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://xmlns.jcp.org/jsf/html"
  xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
  xmlns:p="http://primefaces.org/ui"
  xmlns:f="http://xmlns.jcp.org/jsf/core">
<h:head>
    <title>title</title>
</h:head>
<f:metadata>
    <f:viewAction action="#{primeAutomobileController.loadAutomobiles}"/>
    <f:viewAction action="#{primeAutomobileController.populateAutomobileFieldList}"/>
</f:metadata>
<ui:composition template="layout/template.xhtml">
    <ui:define name="content"> ......................

f:metadata中的两种方法都适当地加载了,就像我关注的视频教程中的一个示例中所示,但是当它是differe xhtml中相同的确切代码时,它不起作用。

元数据标签的文档显示使用模板时必须如何完成(模板必须看起来像是如何看起来以及如何在模板客户端中使用它):

该实现必须允许该元素根据 以下模式

模板客户端xhtml视图,查看01.xhtml

<ui:composition template="template.xhtml">
    <ui:define name="metadata">
      <f:metadata>
        <f:viewParam name="id"/>
      </f:metadata>
    </ui:define>
    <ui:define name="content">
        <h1>The big news stories of the day</h1>
    </ui:define>
</ui:composition>

注意行4.页面作者必须确保<f:metadata>元素 没有出现在模板上或包含的页面上。它必须驻留在 与ViewID相对应的根页。

模板页,template.xhtml

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:f="http://java.sun.com/jsf/core"
      xml:lang="en" lang="en">
<body>
<f:view>
        <ui:insert name="metadata"/>
    <div id="container">
        <ui:insert name="content"/>
    </div>
</f:view>
</body>
</html>

页面作者不需要使用模板,,但是如果这样做,则 必须如上所示完成

相关内容

  • 没有找到相关文章

最新更新