Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Setting maxFormContentSize with the jetty-maven-plugin

> looks to me like your using the jetty6 packaging, try shifting that
> over to org.eclipse.jetty.server.Request

Thanks! You've restored my sanity. I guess I wasn't completely clear
on the transition over to the org.eclipse packages but it makes
perfect sense:
<systemProperty>
  <name>org.eclipse.jetty.server.Request.maxFormContentSize</name>
  <value>-1</value>
</systemProperty>
solved the problem.


Back to the top