apollo89 요즘 읽고 있는 책
프로그래머의 길,멘토에게 묻다
데이브 후버,애디웨일 오시나이 공저/강중빈 역
프로그래머 그 다음 이야기
임백준 등저
대규모 서비스를 지탱하는 기술
이토 나오야,다나카 신지 공저
존 맥아더의 성경,이렇게 믿어라
존 맥아더 저
아이디어맨 Idea man
안진환 역/폴 앨런 저
예스24 | 애드온2
The maximum size in bytes of the POST which will be handled by the container FORM URL parameter parsing. The feature can be disbled by setting this attribute to a value inferior or equal to 0. If not specified, this attribute is set to 2097152 (2 megabytes).

http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/http.html

Tomcat이 디폴트로 약 2메가 정도의 Post 데이터만 처리...

따라서 $TOMCAT_HOME/conf/server.xml 에서 Connector> 엘리먼트에 maxPostSize를 추가..
(0이면 무제한인듯)

<Connector port="8102" minProcessors="1" maxProcessors="5"
           enableLookups="false" redirectPort="8443" acceptCount="100"
           debug="0" connectionTimeout="120000" useBodyEncodingForURI="true"
           maxPostSize="3145728"
           protocol="AJP/1.3" />

Trackback URL : http://apollo89.com/blog/trackback/269
openclose