我有一个添加按钮,这个按钮就像这样在数据表中添加一行。
public void addDetail(){
detail.add(new Detail());
RequestContext.getCurrentInstance().update(":theDatatable");
}
问题是当数据表有太多行(Ex 200行)时,因为渲染过程中的ajax调用有很多参数,服务器会抛出此错误
java.lang.IllegalStateException: More than the maximum number of request parameters (GET plus POST) for a single request ([512]) were detected. Any parameters beyond this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector.
我无法修复此更改了maxParameterCount但请求的时间没有改变(~2000ms)
我的问题是:是否可以使用widgetVar通过javascript添加单行?还有其他解决办法吗?
谢谢!
编辑:
这是xhtml代码的一部分。
<p:dataTable id="theDatatable" var="_det" rowIndexVar="indexVar"
style="width:100%;" widgetVar="dataTableDetalleWidget"
rendered="#{neLiquidacionController.currentCab.tipoLine==neLiquidacionController.facturar.value}"
editMode="row" editable="true"
value="#{neLiquidacionController.detail}">
<p:ajax event="rowEdit" update="@this" />
<p:column headerText="Item" width="40" style="background:#EEEEEE;">
<h:outputText value="#{indexVar+1}" />
</p:column>
<p:column headerText="Descripción">
<p:cellEditor>
<f:facet name="output">
<p:outputLabel value="#{_det.productos.descripcion}" />
</f:facet>
<f:facet name="input">
<p:autoComplete id="producto" placeholder="ingrese un valor.."
disabled="#{neLiquidacionController.currentCab.estado!='PENDIENTE'}"
converter="#{productoConverter}" autocomplete="true"
required="true" onfocus="this.select();"
onkeypress="if(event.keyCode==27){addDetail();}"
completeMethod="#{neLiquidacionController.completeProducto}"
var="p" itemLabel="#{p.descripcion}" itemValue="#{p}"
scrollHeight="300" forceSelection="true" dropdown="true"
value="#{_det.productos}">
<p:ajax event="itemSelect" async="true"
listener="#{neLiquidacionController.elementChangeProducto}"></p:ajax>
<f:facet name="itemtip">
<p:panelGrid columns="2">
<f:facet name="header">Producto</f:facet>
<p:column headerText="Codigo">
<h:outputLabel value="#{p.codProducto}" />
</p:column>
<p:column headerText="Descripcion">
<h:outputLabel value="#{p.descripcion}" />
</p:column>
</p:panelGrid>
</f:facet>
</p:autoComplete>
</f:facet>
</p:cellEditor>
</p:column>
</p:dataTable>
<pe:remoteCommand name="addDetail" async="true" partialSubmit="true"
process="@this"
actionListener="#{neLiquidacionController.addDetail()}">
</pe:remoteCommand>
使用Primefaces 5.0和PrimeFaces扩展2.0
Firebug请求和响应。
javax.faces.ViewState 3374159165244990485:-1029187269574844262
javax.faces.behavior.even... keypress
javax.faces.partial.ajax true
javax.faces.partial.event keypress
javax.faces.partial.execu... notaEnvioDet:detalle:98:salida
javax.faces.source notaEnvioDet:detalle:98:salida
notaEnvioDet:detalle:0:co... 7840048000043
notaEnvioDet:detalle:0:pr... 4
......
notaEnvioDet:detalle:98:pr... 680
notaEnvioDet:detalle:98:pr... AZUCAR CONFITERO X 1Kg.
notaEnvioDet:detalle:98:sa... 37.0
notaEnvioDet:nroDocumento 824
这发送所有数据表值... 这里有回应:
<?xml version='1.0' encoding='UTF-8'?>
<partial-response><changes><update id="messages"><![CDATA[<span id="messages"></span><script id="messages_s" type="text/javascript">$(function(){PrimeFaces.cw('Growl','growlWidget',{id:'messages',sticky:false,life:6000,escape:true,msgs:[]});});</script>]]></update><update id="usuarios:j_idt482"><![CDATA[<div id="usuarios:j_idt482" class="ui-messages ui-widget" aria-live="polite"></div>]]></update><update id="javax.faces.ViewState"><![CDATA[3374159165244990485:-1029187269574844262]]></update></changes></partial-response>
答案 0 :(得分:0)
如果将服务器用作Jboss,则可以在standalone.xml中进行更改,就像
一样 <system-properties>
<property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="2000"/>
</system-properties>