gpt4 book ai didi

java - 意见箱性能问题

转载 作者:行者123 更新时间:2023-12-01 05:54:24 25 4
gpt4 key购买 nike

我在建议箱方面遇到了一些性能问题。

我有一个包含 200 行的页面,每行有 2 个文本字段建议框,该页面加载时间超过 20 秒,

   <rich:dataTable
id="detail_table"
width="auto"
value="#{testBean.testList}"
var="record"
headerClass="GrayBackgroundHeader"
rowKeyVar="row"
ajaxRendered="true"
rowClasses="TableRowOdd,TableRowEven">
<f:facet name="header">
<rich:columnGroup>
<h:column>
<h:outputText value="ColumnA" />
</h:column>
<h:column>
<h:outputText value="ColumnB" />
</h:column>
</rich:columnGroup>
</f:facet>
<rich:columnGroup>
<h:column>
<h:inputText value="#{record}" id="text1" />
<rich:suggestionbox id="suggestionBoxId1" for="text1" selfRendered="true"/>
</h:column>
<h:column>
<h:inputText value="#{record}" id="text2" />
<rich:suggestionbox id="suggestionBoxId2" for="text2" selfRendered="true"/>
</h:column>
</rich:columnGroup>
</rich:dataTable>

以上是我的测试代码。我是否错误地使用了建议框,或者请提供建议以提高性能。

非常感谢~

最佳答案

使用分页是一种选择吗?如果是这样,您可能想检查以下示例 http://livedemo.exadel.com/richfaces-demo/richfaces/dataTable.jsf?tab=dataModel&cid=295707使用 datascroller 并为了更好地提高性能,您可以实现自己的 SerializedDataModel,在其中您将能够仅检索页面中所需的行数

关于java - 意见箱性能问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3564087/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com