通过Zuul上传大文件

通过Zuul上传大文件,第1张

通过Zuul上传大文件

我找到了解决方案。基本描述如下:

http://cloud.spring.io/spring-cloud-static/spring-
cloud.html#_uploading_files_through_zuul

我做了什么使它工作。只需一步一步:

  1. 为了绕过Spring DispatcherServlet,我更改了URL:

来自: http:// localhost:8081 / MyService /
file

到: http:// localhost:8081 / zuul / MyService /
file

  1. 保留禁用Spring分段上传的功能:
    spring:http:    multipart:        enabled: false

下标头不是必需的。传输编码:分块

我试图上传一个没有该文件的大文件,这很好。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621754.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存