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://seonho.blogspot.kr/2012/01/hashdos.html