반응형

JBWEB000065: HTTP Status 500 - JBWEB002004: 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.

#에러메시지

 

#해결방법

domain.xml, standalone.xml

 

 

 

</extensions>

 

<system-properties>

    <property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="1024" />

</system-properties>

 

<management>

 

- 굵게 표시된 설정값을 extenstions, management 엘리먼트 사이에 등록

- 붉게 표시된 값을 조정하면 됨.

 

반응형

+ Recent posts