develog

maxParameterCount 본문

Web & WAS/Tomcat

maxParameterCount

냐옴 2013. 7. 16. 14:43

● 에러메시지

2013. 7. 16 오후 2:03:35 org.apache.tomcat.util.http.Parameters processParameters

정보: More than the maximum number of request parameters (GET plus POST) for a single request ([10000]) were detected.

Any parameters beyond this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector.


● 수정, server.xml (maxParameterCount 값 수정, default 10000)

<Connector port="8080"

    ...

    maxParameterCount="10000"

/>


 참고

http://302.pe.kr/323

http://seonho.blogspot.kr/2012/01/hashdos.html


'Web & WAS > Tomcat' 카테고리의 다른 글

Tomcat 6, ROOT.xml, docBase  (0) 2013.07.25
tomcat, context.xml, resource 설정  (0) 2013.07.17
DBCP 커넥션 풀 옵션 (connection pool)  (0) 2013.06.24
apache tomcat java 버전  (0) 2013.02.13
eclipse tomcat dbcp 셋팅 (connection pool)  (0) 2012.10.30
Comments