Tomcat Request postData null -
my web app works fine in local tomcat server test. when deploy test environment, app not work right.
so remote debug app, found postdata of tomcat request null, while have data in local debug.
that's weird. got nothing clue google.
i found answer adding tomcat jar in runtime , tracing code.
it because test environment tomcat had wrong configuration.
it sets maxpostsize=0
of connector in conf/server.xml, causes failreason.post_too_large
error , would't parse post data , null postdata.
Comments
Post a Comment