在下面显示的代码中,update="testTable"
按钮会触发Bean.getSensors
调用三次次,但update="@form"
按钮只触发一次。为什么呢?
<h:form id="form4" prependId="true">
<p:commandButton value="id" update="testTable" process="@none"/>
<p:commandButton value="@form" update="@form" process="@none"/>
<p:dataTable id="testTable" value="#{bean.sensors}"
var="sensor"
rowStyleClass="#{sensor.alarm ? 'alarm' : null}">
<p:column headerText="Name" style="min-width: 100px; width: 100px;">
<h:outputText value="#{sensor.name}"/>
</p:column>
<p:column headerText="Value" style="min-width: 100px; width: 100px;">
<h:outputText value="#{sensor.value}"/>
</p:column>
</p:dataTable>
</h:form>
谢谢大家!
答案 0 :(得分:0)
这很正常。 JSF和Primefaces需要多次调用它。 如果您遇到性能问题,请使用延迟加载
public List<Sensor> getSensors(){
if(sensors == null){
sensors = ejb.getSensors();
}
return sensors;
}