我找到了解决方案。基本描述如下:
http://cloud.spring.io/spring-cloud-static/spring-
cloud.html#_uploading_files_through_zuul
我做了什么使它工作。只需一步一步:
- 为了绕过Spring DispatcherServlet,我更改了URL:
来自: http:// localhost:8081 / MyService /
file
到: http:// localhost:8081 / zuul / MyService /
file
- 保留禁用Spring分段上传的功能:
spring:http: multipart: enabled: false
我试图上传一个没有该文件的大文件,这很好。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)