Added system property refine.max_form_content_size

To allow configuring the maximum allowed form content size in Jetty.
This commit is contained in:
Frank Wennerdahl 2014-05-16 14:37:24 +02:00
parent 8330e9c474
commit a8ccdd0739

View File

@ -182,10 +182,11 @@ class RefineServer extends Server {
}
final String contextPath = Configurations.get("refine.context_path","/");
final int maxFormContentSize = Configurations.getInteger("refine.max_form_content_size", 1048576);
logger.info("Initializing context: '" + contextPath + "' from '" + webapp.getAbsolutePath() + "'");
WebAppContext context = new WebAppContext(webapp.getAbsolutePath(), contextPath);
context.setMaxFormContentSize(1048576);
context.setMaxFormContentSize(maxFormContentSize);
this.setHandler(context);
this.setStopAtShutdown(true);