В зависимости от того, сколько лет вы используете версию Jetty (в моем случае Jetty-5.1.14, встроенную в Eclipse Equinox), также может быть, что это свойство должно быть org.mortbay.http .HttpRequest.maxFormContentSize
От: org.mortbay.http.HttpRequest
/**
* Max size of the form content. Limits the size of the data a client can push at the server.
* Set via the org.mortbay.http.HttpRequest.maxContentSize system property.
*/
public static int __maxFormContentSize = Integer.getInteger(
"org.mortbay.http.HttpRequest.maxFormContentSize", 200000).intValue();
Так что вам нужно сделать что-то подобное в вашем приложении при запуске, чтобы установить значение:
System.setProperty("org.mortbay.http.HttpRequest.maxFormContentSize", "10000000");