3

使用 Eclipse Kepler SR1,内容辅助无法使用数据表 primefaces 中声明的 var:

<p:dataTable value="#{testManagedBean.listAllDomaines()}" var="pRow" >
  <p:column>
    <h:outputText value="#{pRow.}" />
  </p:column>
</p:dataTable>

+ CTRL 空格显示#{pRow.}enithing。

使用经典数据表没关系:

<h:dataTable value="#{testManagedBean.lstdDomaines}" var="stdRow">
  <h:column>
    <h:outputText value="#{stdRow.iddom}" />
  </h:column>
</h:dataTable>

有任何想法吗 ?

问候,

史蒂夫

4

1 回答 1

0

打开 Eclipse 并在菜单栏中选择:

Window > Preferences >

General > Preferences > General > Content Types > Text > JSP (select)

  • 单击“添加...”按钮
  • 插入:*.xhtml
  • “确定”按钮
  • 现在你的问题已经解决了
于 2017-08-17T15:06:20.413 回答