maven jetty post 上传长度设置
xml
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.8.v20171121</version>
<configuration>
<scanIntervalSeconds>1</scanIntervalSeconds>
<reload>manual</reload>
<httpConnector>
<port>9013</port>
</httpConnector>
<webAppConfig>
<maxFormContentSize>885947</maxFormContentSize>
</webAppConfig>
</configuration>
</plugin>