feign 如何实现上传文件和下载文件呢? 找了好多资料也没有找到合适好用的方法
来源:5-5 Feign的使用
破地瓜
2018-12-02
网上的案例版本都比较旧了 有没有案例给我看一下;
写回答
2回答
-
廖师兄
2018-12-02
这是已经解决了吗?真实应用中,在分布式架构,一般不再使用传统的文件,会借助第三方存储系统,比如阿里云的oss
022018-12-05 -
破地瓜
提问者
2018-12-02
@GetMapping("/file/download/{id}") public Response download(@PathVariable("id") Long id);
下载通过这种方式可以实现;
server 端代码如下
@GetMapping("/download/{id}") public ResponseEntity<FileSystemResource> download(@PathVariable("id") Long id) { //代码略 }
00
SpringCloud Finchley(M2+RELEASE+SR2)微服务实战
SpringCloud组件实现微服务,【已升级Finchley.Release】
5668 学习 · 2489 问题
相似问题