Merge pull request #876 from Arcadelia/Apply-operations_Form-too-large

Added system property refine.max_form_content_size
This commit is contained in:
Tom Morris 2014-07-03 10:29:28 -04:00
commit 71b9c4f5fd

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);