Feign调用传输文件异常的解决

网友投稿 323 2023-01-03

Feign调用传输文件异常的解决

1. Current request is not a multipart request

feign接口参数使用 @RequestPart 而非 @RequestParam, 同时需要指定consumes,比如这样:

@PostMapping(value = "/upload",consumes = MediaType.MULTIPART_FORM_DATA_VALUE)

Result upload(@RequestPart(value = "file") MultipartFile file);

2. Feign failed and no fallback

这是hystrix导致,关闭feign熔断,或者延长熔断的超时时间,我简单粗暴的直接关了

3.Read timed out executing POST for “xxx”

配置了hystrix还不行,或者延长ribbon的超时时间,参考了Feign超时问题的办法,简单来说就是feign经过了ribbonn和hystrix两级调用,而且都有一个默认的超时时间,延长超时时间就好了

spring:

servlet:

context-path: /farm

application:

name: farm

profiles:

active: dev

main:

allow-bean-definition-overriding: true

eureka:

client:

service-url:

defaultZone: http://127.0.0.1:7001/eureka

instance:

prefer-ip-address: true

#关闭feign熔断

feign:

hystrix:

enabled: false

#开启熔断,关闭熔断超时或延长调用超时时间

#hystrix:

# command:

# default:

# execution:

# timeout:

# enabled: false

# isolation:

# thread:

# timeoutInMilliseconds: 30000

#延长ribbon超时时间

ribbon:

ReadTimeout: 30000

ConnectTimeout: 30000

通过Feign上传文件(踩坑)

引入依赖:

org.springframework.cloud

spring-cloud-starter-openfeign

服务提供者:

@RestController

@RequestMapping("/file")

public interface FileUploadService {

@RequestMapping(value = "/uploadFile", method = RequestMethod.POST, consumes = MULTIPART_FORM_DATA_VALUE)

CommonResult uploadFile(@RequestPart("file") MultipartFile file,

@RequestParam(value = "containerName", required = false) String containerName

}

具体实现不是重点……根据你的实际情况去完成……

服务调用者:

@RestController

@FeignClient(value = "XXXXXXXX", configuration = FileUploadServiceFeign.ClientConfiguration.class)

@RequestMapping("/file")

public interface FileUploadServiceFeign extends FileUploadService {

/**

* 配置类

*/

class ClientConfiguration {

/**

* 此处注入的是: ObjectFactory

*/

@Autowired

private ObjectFactory messageConverters;

@Bean

public Encoder feignEncoder() {

return new SpringFormEncoder(new SpringEncoder(messageConverters));

}

}

}

这样就行了……

需要注意的是:

在服务调用者那层的MultipartFile的value要跟服务提供者的@RequestPart中的value值一样。不然它会抛出400异常!!!

成功案例:

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:速运通快递物流查询单号(快递快运物流单号查询)
下一篇:如何获取电影网站api接口数据(电影采集网站接口)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~