1:spring mvc 上傳限制大小 配置是否容許在上傳文件的大小
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver" p:defaultEncoding="UTF-8">
<property name="maxUploadSize"><value>524288000</value></property>
<property name="maxInMemorySize"><value>4096</value></property>
</bean>
2:nginx 服務器反向代理配置上錯誤
打開nginx主配置文件nginx.conf,通常在/usr/local/nginx/conf/nginx.conf這個位置,找到http{}段並修改如下內容
client_max_body_size 2m; 2M爲容許的文件大小
修改後,測試nginx配置是否正確 ./nginx -t
測試配置正確後,重啓nginx使配置生效 ./nginx -s reload 從新加載配置文件nginx